You are here

protected function CloseBracketSpacingUnitTest::getErrorList in Coder 8.3.x

Same name and namespace in other branches
  1. 8.3 tests/Drupal/WhiteSpace/CloseBracketSpacingUnitTest.php \Drupal\Test\WhiteSpace\CloseBracketSpacingUnitTest::getErrorList()

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.

Parameters

string $testFile The name of the file being tested.:

Return value

array<int, int>

Overrides CoderSniffUnitTest::getErrorList

File

tests/Drupal/WhiteSpace/CloseBracketSpacingUnitTest.php, line 21

Class

CloseBracketSpacingUnitTest

Namespace

Drupal\Test\WhiteSpace

Code

protected function getErrorList(string $testFile) : array {
  return [
    3 => 1,
    7 => 1,
  ];
}