mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[feature/controller] Use sizeof() instead of count() as per guidelines
PHPBB3-10864
This commit is contained in:
parent
120267e580
commit
e516680859
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class phpbb_controller_test extends phpbb_test_case
|
|||
->find('./tests/controller/');
|
||||
|
||||
// This will need to be updated if any new routes are defined
|
||||
$this->assertEquals(2, count($routes));
|
||||
$this->assertEquals(2, sizeof($routes));
|
||||
}
|
||||
|
||||
public function test_controller_resolver()
|
||||
|
|
Loading…
Add table
Reference in a new issue