Skip to content

Commit 80b8a0e

Browse files
committed
Rename PMAStandard to PhpMyAdmin
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
1 parent afb411b commit 80b8a0e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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

3636
Run 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
4343
manually 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
5656
123 | WARNING | Line exceeds 85 characters; contains 139 characters
5757
184 | ERROR   | Line indented incorrectly; expected at least 20 spaces, found
5858
    |         | 16

0 commit comments

Comments
 (0)