-
-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CodeQuality] Handle Switch maybe return on ExplicitReturnNullRector (#…
…5801) * [CodeQuality] Handle Switch maybe return on ExplicitReturnNullRector * Fix
- Loading branch information
1 parent
0348124
commit a43f371
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
...deQuality/Rector/ClassMethod/ExplicitReturnNullRector/Fixture/switch_maybe_return.php.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
namespace Rector\Tests\CodeQuality\Rector\ClassMethod\ExplicitReturnNullRector\Fixture; | ||
|
||
class SwitchMaybeReturn | ||
{ | ||
public function run(int $number) | ||
{ | ||
switch ($number) { | ||
case 1: | ||
return 1; | ||
case 2: | ||
default: | ||
} | ||
} | ||
} | ||
|
||
?> | ||
----- | ||
<?php | ||
|
||
namespace Rector\Tests\CodeQuality\Rector\ClassMethod\ExplicitReturnNullRector\Fixture; | ||
|
||
class SwitchMaybeReturn | ||
{ | ||
public function run(int $number) | ||
{ | ||
switch ($number) { | ||
case 1: | ||
return 1; | ||
case 2: | ||
default: | ||
} | ||
return null; | ||
} | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters