@@ -30,29 +30,29 @@ You can verify whether the standard can be found:
3030
3131``` sh
3232$ phpcs -i
33- The installed coding standards are MySource, PSR1, PHPCS, Zend, Squiz, PEAR, PSR2 and PMAStandard
33+ The installed coding standards are MySource, PSR1, PHPCS, Zend, Squiz, PEAR, PSR2 and PhpMyAdmin
3434```
3535
3636Run CodeSniffer:
3737
3838``` sh
39- $ phpcs --standard=PMAStandard /path/to/code
39+ $ phpcs --standard=PhpMyAdmin /path/to/code
4040```
4141
42- You can optionally make PMAStandard the default for all invocations of phpcs, then you don't need to
42+ You can optionally make PhpMyAdmin the default for all invocations of phpcs, then you don't need to
4343manually specify it each time on the command line:
4444
4545``` sh
46- $ phpcs --config-set default_standard PMAStandard
46+ $ phpcs --config-set default_standard PhpMyAdmin
4747```
4848
4949## Using
5050
51- PMAStandard has its tuned coding style checks, such as missing ` @author ` ,
52- ` @copyright ` , ` @link ` or other tags. Let's take a look at an example, checked with PMAStandard :
51+ PhpMyAdmin has its tuned coding style checks, such as missing ` @author ` ,
52+ ` @copyright ` , ` @link ` or other tags. Let's take a look at an example, checked with PhpMyAdmin :
5353
5454``` sh
55- $ phpcs --standard=PMAStandard /path/to/code/myfile.php
55+ $ phpcs --standard=PhpMyAdmin /path/to/code/myfile.php
5656123 | WARNING | Line exceeds 85 characters; contains 139 characters
5757184 | ERROR | Line indented incorrectly; expected at least 20 spaces, found
5858 | | 16
0 commit comments