* @copyright 2006-2017 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\Generic\Tests\WhiteSpace; use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; class LanguageConstructSpacingUnitTest 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() { return [ 3 => 1, 7 => 1, 11 => 1, 15 => 1, 19 => 1, 23 => 1, 27 => 1, 30 => 1, 33 => 1, 34 => 1, 35 => 1, 36 => 1, 38 => 1, 44 => 1, 45 => 1, 46 => 2, 49 => 1, 51 => 1, 59 => 1, 61 => 1, 63 => 1, 67 => 1, 70 => 1, 71 => 1, 75 => 1, ]; }//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