File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/rules/Php80/NodeFactory/AttributeFlagFactory.php
Back
<?php declare (strict_types=1); namespace Rector\Php80\NodeFactory; use PhpParser\Node\Expr; use PhpParser\Node\Expr\BinaryOp\BitwiseOr; use PhpParser\Node\Expr\ClassConstFetch; final class AttributeFlagFactory { /** * @param ClassConstFetch[] $classConstFetches * @return ClassConstFetch|BitwiseOr|null */ public function createFlagCollection(array $classConstFetches) : ?Expr { if ($classConstFetches === []) { return null; } $flagCollection = \array_shift($classConstFetches); foreach ($classConstFetches as $classConstFetch) { $flagCollection = new BitwiseOr($flagCollection, $classConstFetch); } return $flagCollection; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.18 |
proxy
|
phpinfo
|
Settings