* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence */ namespace PHP_CodeSniffer\Standards\Squiz\Tests\NamingConventions; use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; class ValidVariableNameUnitTest extends AbstractSniffUnitTest { /** * Returns the lines where errors should occur. * * The key of the array should represent the line number and the value * should represent the number of errors that should occur on that line. * * @return array */ public function getErrorList() { $errors = [ 3 => 1, 5 => 1, 10 => 1, 12 => 1, 15 => 1, 17 => 1, 20 => 1, 22 => 1, 25 => 1, 27 => 1, 31 => 1, 33 => 1, 36 => 1, 37 => 1, 39 => 1, 42 => 1, 44 => 1, 53 => 1, 58 => 1, 62 => 1, 63 => 1, 64 => 1, 67 => 1, 81 => 1, 106 => 1, 107 => 2, 108 => 1, 111 => 1, 112 => 1, 113 => 1, 114 => 1, 123 => 1, 138 => 1, 141 => 1, 146 => 1, ]; return $errors; }//end getErrorList() /** * Returns the lines where warnings should occur. * * The key of the array should represent the line number and the value * should represent the number of warnings that should occur on that line. * * @return array */ public function getWarningList() { return []; }//end getWarningList() }//end class