mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 05:15:04 +01:00
2fa48d7e59
[PHP 8.0] Allow back compatiblity with DoctrineAnnotationClassToAttributeRector (#124)
27 lines
698 B
PHP
27 lines
698 B
PHP
<?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[] $flags
|
|
* @return ClassConstFetch|BitwiseOr|null
|
|
*/
|
|
public function createFlagCollection(array $flags) : ?\PhpParser\Node\Expr
|
|
{
|
|
if ($flags === []) {
|
|
return null;
|
|
}
|
|
$flagCollection = \array_shift($flags);
|
|
foreach ($flags as $flag) {
|
|
$flagCollection = new \PhpParser\Node\Expr\BinaryOp\BitwiseOr($flagCollection, $flag);
|
|
}
|
|
return $flagCollection;
|
|
}
|
|
}
|