-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed sniffs and tweaked error messages (ref #3055)
- Loading branch information
Showing
13 changed files
with
29 additions
and
29 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
2 changes: 1 addition & 1 deletion
2
...refixRequiredForAbstractClassStandard.xml → ...tions/AbstractClassNamePrefixStandard.xml
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
4 changes: 2 additions & 2 deletions
4
...aceSuffixRequiredForInterfaceStandard.xml → ...nventions/InterfaceNameSuffixStandard.xml
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
4 changes: 2 additions & 2 deletions
4
...s/TraitSuffixRequiredForTraitStandard.xml → ...ngConventions/TraitNameSuffixStandard.xml
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
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
File renamed without changes.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
/** | ||
* Unit test class for the AbstractPrefixRequiredForAbstractClass sniff. | ||
* Unit test class for the AbstractClassNamePrefix sniff. | ||
* | ||
* @author Anna Borzenko <[email protected]> | ||
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence | ||
|
@@ -10,7 +10,7 @@ | |
|
||
use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; | ||
|
||
class AbstractPrefixRequiredForAbstractClassUnitTest extends AbstractSniffUnitTest | ||
class AbstractClassNamePrefixUnitTest extends AbstractSniffUnitTest | ||
{ | ||
|
||
|
||
|
File renamed without changes.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
/** | ||
* Unit test class for the InterfaceSuffixRequiredForInterface sniff. | ||
* Unit test class for the InterfaceNameSuffix sniff. | ||
* | ||
* @author Anna Borzenko <[email protected]> | ||
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence | ||
|
@@ -10,7 +10,7 @@ | |
|
||
use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; | ||
|
||
class InterfaceSuffixRequiredForInterfaceUnitTest extends AbstractSniffUnitTest | ||
class InterfaceSuffixNameUnitTest extends AbstractSniffUnitTest | ||
{ | ||
|
||
|
||
|
File renamed without changes.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
/** | ||
* Unit test class for the TraitSuffixRequiredForTrait sniff. | ||
* Unit test class for the TraitNameSuffix sniff. | ||
* | ||
* @author Anna Borzenko <[email protected]> | ||
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence | ||
|
@@ -10,7 +10,7 @@ | |
|
||
use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; | ||
|
||
class TraitSuffixRequiredForTraitUnitTest extends AbstractSniffUnitTest | ||
class TraitNameSuffixUnitTest extends AbstractSniffUnitTest | ||
{ | ||
|
||
|
||
|