Skip to content

Commit 938905f

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix CS Fix CS
2 parents 5a2a012 + cbfef5a commit 938905f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Definition/BaseNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ private static function resolvePlaceholderValue($value)
508508
private function doValidateType($value): void
509509
{
510510
if (null !== $this->handlingPlaceholder && !$this->allowPlaceholders()) {
511-
$e = new InvalidTypeException(sprintf('A dynamic value is not compatible with a "%s" node type at path "%s".', \get_class($this), $this->getPath()));
511+
$e = new InvalidTypeException(sprintf('A dynamic value is not compatible with a "%s" node type at path "%s".', static::class, $this->getPath()));
512512
$e->setPath($this->getPath());
513513

514514
throw $e;

0 commit comments

Comments
 (0)