forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature PHP-CS-Fixer#1449 PhpUnitConstructFixer - Fix more use cases …
…(SpacePossum) This PR was squashed before being merged into the 1.11 branch (closes PHP-CS-Fixer#1449). Discussion ---------- PhpUnitConstructFixer - Fix more use cases Fix the following (Not) cases as well. ```php <?php $this->assertNotSame(false, $a); <?php $this->assertNotFalse($a); ``` ```php <?php $this->assertNotSame(true, $a); <?php $this->assertNotTrue($a); ``` ```php <?php $this->assertNotSame(false, $a); <?php $this->assertNotFalse($a); ``` ```php <?php $this->assertNotSame(true, $a); <?php $this->assertNotTrue($a); ``` Replaces PHP-CS-Fixer#1380 (which was targeted at master and more of a mess). Commits ------- 0cbf0ad PhpUnitConstructFixer - Fix more use cases
- Loading branch information
Showing
2 changed files
with
33 additions
and
48 deletions.
There are no files selected for viewing
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
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