mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-16 05:44:59 +01:00
3b64243cf0
[CodingStyle] Fix change short php version on VersionCompareFuncCallToConstantRector (#209)
30 lines
816 B
PHP
30 lines
816 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Renaming\NodeManipulator;
|
|
|
|
use PhpParser\Node\Scalar\LNumber;
|
|
use PhpParser\Node\Stmt;
|
|
use PhpParser\Node\Stmt\Break_;
|
|
final class SwitchManipulator
|
|
{
|
|
/**
|
|
* @param Stmt[] $stmts
|
|
* @return Stmt[]
|
|
*/
|
|
public function removeBreakNodes(array $stmts) : array
|
|
{
|
|
foreach ($stmts as $key => $node) {
|
|
if (!$node instanceof \PhpParser\Node\Stmt\Break_) {
|
|
continue;
|
|
}
|
|
if (!$node->num instanceof \PhpParser\Node\Scalar\LNumber || $node->num->value === 1) {
|
|
unset($stmts[$key]);
|
|
continue;
|
|
}
|
|
$node->num = $node->num->value === 2 ? null : new \PhpParser\Node\Scalar\LNumber($node->num->value - 1);
|
|
}
|
|
return $stmts;
|
|
}
|
|
}
|