Skip to content

Commit

Permalink
Sync method signature with parent class method.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Jul 8, 2017
1 parent 86cff55 commit 4c94503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/DatabaseSuite.php
Expand Up @@ -40,9 +40,9 @@ public static function suite()
return $suite; return $suite;
} }


public function count() public function count($preferCache = false)
{ {
return parent::count() * 2; return parent::count($preferCache) * 2;
} }


/** /**
Expand Down

0 comments on commit 4c94503

Please sign in to comment.