Skip to content

Commit 641016f

Browse files
committed
[PHP 8.0] Add RemoveUnusedVariableInCatchRector
1 parent bd23afd commit 641016f

File tree

5 files changed

+157
-4
lines changed

5 files changed

+157
-4
lines changed

composer.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"jetbrains/phpstorm-stubs": "^2019.3",
2020
"nette/robot-loader": "^3.2",
2121
"nette/utils": "^3.1",
22-
"nikic/php-parser": "^4.4",
22+
"nikic/php-parser": "^4.5",
2323
"ondram/ci-detector": "^3.4",
2424
"phpstan/phpdoc-parser": "^0.4.7",
2525
"phpstan/phpstan": "^0.12.25",
@@ -279,7 +279,5 @@
279279
"branch-alias": {
280280
"dev-master": "0.8-dev"
281281
}
282-
},
283-
"minimum-stability": "dev",
284-
"prefer-stable": true
282+
}
285283
}

config/set/php/php80.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ services:
88
Rector\Php80\Rector\FuncCall\ClassOnObjectRector: null
99
Rector\Php80\Rector\Ternary\GetDebugTypeRector: null
1010
Rector\Php80\Rector\FuncCall\TokenGetAllToObjectRector: null
11+
Rector\Php80\Rector\Catch_\RemoveUnusedVariableInCatchRector: null
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Rector\Php80\Rector\Catch_;
6+
7+
use PhpParser\Node;
8+
use PhpParser\Node\Expr\Variable;
9+
use PhpParser\Node\Stmt\Catch_;
10+
use Rector\Core\Rector\AbstractRector;
11+
use Rector\Core\RectorDefinition\CodeSample;
12+
use Rector\Core\RectorDefinition\RectorDefinition;
13+
14+
/**
15+
* @see https://wiki.php.net/rfc/non-capturing_catches
16+
*
17+
* @see \Rector\Php80\Tests\Rector\Catch_\RemoveUnusedVariableInCatchRector\RemoveUnusedVariableInCatchRectorTest
18+
*/
19+
final class RemoveUnusedVariableInCatchRector extends AbstractRector
20+
{
21+
public function getDefinition(): RectorDefinition
22+
{
23+
return new RectorDefinition('Remove unused variable in catch()', [
24+
new CodeSample(
25+
<<<'PHP'
26+
final class SomeClass
27+
{
28+
public function run()
29+
{
30+
try {
31+
} catch (Throwable $notUsedThrowable) {
32+
}
33+
}
34+
}
35+
PHP
36+
,
37+
<<<'PHP'
38+
final class SomeClass
39+
{
40+
public function run()
41+
{
42+
try {
43+
} catch (Throwable) {
44+
}
45+
}
46+
}
47+
PHP
48+
49+
),
50+
]);
51+
}
52+
53+
/**
54+
* @return string[]
55+
*/
56+
public function getNodeTypes(): array
57+
{
58+
return [Catch_::class];
59+
}
60+
61+
/**
62+
* @param Catch_ $node
63+
*/
64+
public function refactor(Node $node): ?Node
65+
{
66+
$caughtVar = $node->var;
67+
if ($caughtVar === null) {
68+
return null;
69+
}
70+
71+
if ($this->isVariableUsed((array) $node->stmts, $caughtVar)) {
72+
return null;
73+
}
74+
75+
$node->var = null;
76+
77+
return $node;
78+
}
79+
80+
/**
81+
* @param Node[] $nodes
82+
*/
83+
private function isVariableUsed(array $nodes, Variable $variable): bool
84+
{
85+
return (bool) $this->betterNodeFinder->findFirst($nodes, function (Node $node) use ($variable) {
86+
if (! $node instanceof Variable) {
87+
return false;
88+
}
89+
90+
return $this->areNodesEqual($node, $variable);
91+
});
92+
}
93+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php
2+
3+
namespace Rector\Php80\Tests\Rector\Catch_\RemoveUnusedVariableInCatchRector\Fixture;
4+
5+
final class SomeClass
6+
{
7+
public function run()
8+
{
9+
try {
10+
} catch (Throwable $notUsedThrowable) {
11+
}
12+
}
13+
}
14+
15+
?>
16+
-----
17+
<?php
18+
19+
namespace Rector\Php80\Tests\Rector\Catch_\RemoveUnusedVariableInCatchRector\Fixture;
20+
21+
final class SomeClass
22+
{
23+
public function run()
24+
{
25+
try {
26+
} catch (Throwable) {
27+
}
28+
}
29+
}
30+
31+
?>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Rector\Php80\Tests\Rector\Catch_\RemoveUnusedVariableInCatchRector;
6+
7+
use Iterator;
8+
use Rector\Core\Testing\PHPUnit\AbstractRectorTestCase;
9+
use Rector\Php80\Rector\Catch_\RemoveUnusedVariableInCatchRector;
10+
11+
final class RemoveUnusedVariableInCatchRectorTest extends AbstractRectorTestCase
12+
{
13+
/**
14+
* @dataProvider provideData()
15+
*/
16+
public function test(string $file): void
17+
{
18+
$this->doTestFile($file);
19+
}
20+
21+
public function provideData(): Iterator
22+
{
23+
return $this->yieldFilesFromDirectory(__DIR__ . '/Fixture');
24+
}
25+
26+
protected function getRectorClass(): string
27+
{
28+
return RemoveUnusedVariableInCatchRector::class;
29+
}
30+
}

0 commit comments

Comments
 (0)