Fix coding style

This commit is contained in:
Nikita Popov 2023-05-20 18:55:12 +02:00
parent b68fb76f14
commit 779b6950c3
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser;

View File

@ -728,7 +728,7 @@ class Standard extends PrettyPrinterAbstract {
}
return $this->pPrefixOp(
Expr\Yield_::class, 'yield ' . $this->pKey($node->key),
$node->value, $precedence, $lhsPrecedence);
$node->value, $precedence, $lhsPrecedence);
}
}