| 1 | <?php |
||
| 19 | class PHPCompatibility_Sniffs_PHP_NewGroupUseDeclarationsSniff extends PHPCompatibility_Sniff |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Returns an array of tokens this test wants to listen for. |
||
| 23 | * |
||
| 24 | * @return array |
||
| 25 | */ |
||
| 26 | public function register() |
||
| 30 | |||
| 31 | |||
| 32 | /** |
||
| 33 | * Processes this test, when one of its tokens is encountered. |
||
| 34 | * |
||
| 35 | * @param PHP_CodeSniffer_File $phpcsFile The file being scanned. |
||
| 36 | * @param int $stackPtr The position of the current token in |
||
| 37 | * the stack passed in $tokens. |
||
| 38 | * |
||
| 39 | * @return void |
||
| 40 | */ |
||
| 41 | public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr) |
||
| 47 | }//end class |
||
| 48 |