You are here

protected function DbSelectBracesUnitTest::getWarningList in Coder 8.3.x

Same name and namespace in other branches
  1. 8.3 tests/DrupalPractice/FunctionCalls/DbSelectBracesUnitTest.php \DrupalPractice\Test\FunctionCalls\DbSelectBracesUnitTest::getWarningList()

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.

Parameters

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

Return value

array<int, int>

Overrides CoderSniffUnitTest::getWarningList

File

tests/DrupalPractice/FunctionCalls/DbSelectBracesUnitTest.php, line 47

Class

DbSelectBracesUnitTest
Unit test class for the DbSelectBraces sniff.

Namespace

DrupalPractice\Test\FunctionCalls

Code

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