1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-30 04:58:37 +01:00

[feature/controller] Use sizeof() instead of count() as per guidelines

PHPBB3-10864
This commit is contained in:
David King 2012-11-16 10:28:35 -05:00
parent 120267e580
commit e516680859

View File

@ -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()