mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 05:15:04 +01:00
30 lines
828 B
PHP
30 lines
828 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Php80\NodeFactory;
|
|
|
|
use PhpParser\Node\Expr\Assign;
|
|
use PhpParser\Node\MatchArm;
|
|
use Rector\Php80\ValueObject\CondAndExpr;
|
|
final class MatchArmsFactory
|
|
{
|
|
/**
|
|
* @param CondAndExpr[] $condAndExprs
|
|
* @return MatchArm[]
|
|
*/
|
|
public function createFromCondAndExprs(array $condAndExprs) : array
|
|
{
|
|
$matchArms = [];
|
|
foreach ($condAndExprs as $condAndExpr) {
|
|
$expr = $condAndExpr->getExpr();
|
|
if ($expr instanceof \PhpParser\Node\Expr\Assign) {
|
|
// $this->assignExpr = $expr->var;
|
|
$expr = $expr->expr;
|
|
}
|
|
$condExprs = $condAndExpr->getCondExprs();
|
|
$matchArms[] = new \PhpParser\Node\MatchArm($condExprs, $expr);
|
|
}
|
|
return $matchArms;
|
|
}
|
|
}
|