* @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\ControlStructures; use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; class ControlSignatureUnitTest 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. * * @param string $testFile The name of the file being tested. * * @return array */ public function getErrorList($testFile='ControlSignatureUnitTest.inc') { $errors = [ 7 => 1, 12 => 1, 15 => 1, 18 => 1, 20 => 1, 22 => 2, 28 => 2, 32 => 1, 38 => 2, 42 => 1, 48 => 2, 52 => 1, 62 => 2, 66 => 2, 76 => 4, 80 => 2, 94 => 1, 99 => 1, 108 => 1, 112 => 1, ]; if ($testFile === 'ControlSignatureUnitTest.inc') { $errors[122] = 1; $errors[130] = 2; $errors[134] = 1; $errors[150] = 1; $errors[153] = 1; $errors[158] = 1; $errors[165] = 1; $errors[170] = 2; $errors[185] = 1; $errors[190] = 2; $errors[191] = 2; $errors[195] = 1; $errors[227] = 1; $errors[234] = 1; $errors[239] = 2; $errors[243] = 2; $errors[244] = 2; $errors[248] = 1; $errors[259] = 1; $errors[262] = 1; $errors[267] = 1; $errors[269] = 1; $errors[276] = 1; $errors[279] = 1; $errors[283] = 1; $errors[306] = 3; }//end if 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