Skip to content

Commit

Permalink
Update sniff tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ernilambar committed Dec 9, 2024
1 parent 1e269b3 commit e7e72e7
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ final class ImageFunctionsUnitTest extends AbstractSniffUnitTest {
* @return array <int line number> => <int number of errors>
*/
public function getErrorList() {
return array();
}

/**
* Returns the lines where warnings should occur.
*
* @return array <int line number> => <int number of warnings>
*/
public function getWarningList() {
return array(
1 => 1,
7 => 1,
Expand All @@ -32,13 +41,4 @@ public function getErrorList() {
25 => 1,
);
}

/**
* Returns the lines where warnings should occur.
*
* @return array <int line number> => <int number of warnings>
*/
public function getWarningList() {
return array();
}
}

0 comments on commit e7e72e7

Please sign in to comment.