| 1 | <?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase |
||
| 12 | class MasterUserConstantSniff implements Sniff { |
||
| 13 | /** |
||
| 14 | * Returns the token types that this sniff is interested in. |
||
| 15 | * |
||
| 16 | * @return array(int) |
||
|
|
|||
| 17 | */ |
||
| 18 | public function register() { |
||
| 21 | |||
| 22 | |||
| 23 | /** |
||
| 24 | * Processes the tokens that this sniff is interested in. |
||
| 25 | * |
||
| 26 | * @param File $phpcs_file The file where the token was found. |
||
| 27 | * @param int $stack_ptr The position in the stack where the token was found. |
||
| 28 | */ |
||
| 29 | public function process( File $phpcs_file, $stack_ptr ) { |
||
| 42 | |||
| 43 | } |
||
| 44 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.