ACIL FM
Dark
Refresh
Current DIR:
/opt/cpanel/ea-wappspector/vendor/rector/rector/rules/DeadCode/Rector/For_
/
opt
cpanel
ea-wappspector
vendor
rector
rector
rules
DeadCode
Rector
For_
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
RemoveDeadContinueRector.php
2.03 MB
chmod
View
DL
Edit
Rename
Delete
RemoveDeadIfForeachForRector.php
4.99 MB
chmod
View
DL
Edit
Rename
Delete
RemoveDeadLoopRector.php
1.35 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /opt/cpanel/ea-wappspector/vendor/rector/rector/rules/DeadCode/Rector/For_/RemoveDeadLoopRector.php
<?php declare (strict_types=1); namespace Rector\DeadCode\Rector\For_; use PhpParser\Node; use PhpParser\Node\Stmt\Do_; use PhpParser\Node\Stmt\For_; use PhpParser\Node\Stmt\Foreach_; use PhpParser\Node\Stmt\While_; use PhpParser\NodeTraverser; use Rector\Rector\AbstractRector; use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; /** * @see \Rector\Tests\DeadCode\Rector\For_\RemoveDeadLoopRector\RemoveDeadLoopRectorTest */ final class RemoveDeadLoopRector extends AbstractRector { public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('Remove loop with no body', [new CodeSample(<<<'CODE_SAMPLE' class SomeClass { public function run($values) { for ($i=1; $i<count($values); ++$i) { } } } CODE_SAMPLE , <<<'CODE_SAMPLE' class SomeClass { public function run($values) { } } CODE_SAMPLE )]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [Do_::class, For_::class, Foreach_::class, While_::class]; } /** * @param Do_|For_|Foreach_|While_ $node */ public function refactor(Node $node) : ?int { if ($node->stmts !== []) { return null; } return NodeTraverser::REMOVE_NODE; } }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply