1 | <?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase |
||
11 | class MasterUserConstantSniff implements Sniff { |
||
12 | /** |
||
13 | * Returns the token types that this sniff is interested in. |
||
14 | * |
||
15 | * @return array(int) |
||
|
|||
16 | */ |
||
17 | public function register() { |
||
20 | |||
21 | /** |
||
22 | * Processes the tokens that this sniff is interested in. |
||
23 | * |
||
24 | * @param File $phpcs_file The file where the token was found. |
||
25 | * @param int $stack_ptr The position in the stack where the token was found. |
||
26 | */ |
||
27 | public function process( File $phpcs_file, $stack_ptr ) { |
||
40 | |||
41 | } |
||
42 |
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.