-
-
Notifications
You must be signed in to change notification settings - Fork 364
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CodeQuality] Make CommonNotEqualRector skip if not <>
- Loading branch information
1 parent
e66754a
commit e8f01ca
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
rules-tests/CodeQuality/Rector/NotEqual/CommonNotEqualRector/Fixture/skip_already.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,11 @@ | ||
<?php | ||
|
||
namespace Rector\Tests\CodeQuality\Rector\NotEqual\CommonNotEqualRector\Fixture; | ||
|
||
final class SkipAlready | ||
{ | ||
public function run($one, $two) | ||
{ | ||
return $one != $two; | ||
} | ||
} |
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