mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 05:15:04 +01:00
76 lines
2.2 KiB
PHP
76 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Php80\NodeAnalyzer;
|
|
|
|
use PhpParser\Node;
|
|
use PhpParser\Node\Stmt\Break_;
|
|
use PhpParser\Node\Stmt\Case_;
|
|
use PhpParser\Node\Stmt\Return_;
|
|
use PhpParser\Node\Stmt\Switch_;
|
|
final class SwitchAnalyzer
|
|
{
|
|
public function hasEachCaseBreak(\PhpParser\Node\Stmt\Switch_ $switch) : bool
|
|
{
|
|
$totalCases = \count($switch->cases);
|
|
if ($totalCases === 1) {
|
|
return $this->containsCaseReturn($switch->cases[0]);
|
|
}
|
|
foreach ($switch->cases as $key => $case) {
|
|
if ($key === $totalCases - 1) {
|
|
return \true;
|
|
}
|
|
if ($this->hasBreakOrReturnOrEmpty($case)) {
|
|
continue;
|
|
}
|
|
return \false;
|
|
}
|
|
return \true;
|
|
}
|
|
public function hasEachCaseSingleStmt(\PhpParser\Node\Stmt\Switch_ $switch) : bool
|
|
{
|
|
foreach ($switch->cases as $case) {
|
|
$stmtsWithoutBreak = \array_filter($case->stmts, function (\PhpParser\Node $node) : bool {
|
|
return !$node instanceof \PhpParser\Node\Stmt\Break_;
|
|
});
|
|
if (\count($stmtsWithoutBreak) !== 1) {
|
|
return \false;
|
|
}
|
|
}
|
|
return \true;
|
|
}
|
|
public function hasDefault(\PhpParser\Node\Stmt\Switch_ $switch) : bool
|
|
{
|
|
foreach ($switch->cases as $case) {
|
|
if ($case->cond === null) {
|
|
return \true;
|
|
}
|
|
}
|
|
return \false;
|
|
}
|
|
private function hasBreakOrReturnOrEmpty(\PhpParser\Node\Stmt\Case_ $case) : bool
|
|
{
|
|
if ($case->stmts === []) {
|
|
return \true;
|
|
}
|
|
foreach ($case->stmts as $caseStmt) {
|
|
if ($caseStmt instanceof \PhpParser\Node\Stmt\Break_) {
|
|
return \true;
|
|
}
|
|
if ($caseStmt instanceof \PhpParser\Node\Stmt\Return_) {
|
|
return \true;
|
|
}
|
|
}
|
|
return \false;
|
|
}
|
|
private function containsCaseReturn(\PhpParser\Node\Stmt\Case_ $case) : bool
|
|
{
|
|
foreach ($case->stmts as $stmt) {
|
|
if ($stmt instanceof \PhpParser\Node\Stmt\Return_) {
|
|
return \true;
|
|
}
|
|
}
|
|
return \false;
|
|
}
|
|
}
|