Cleaned up the controller and prepared for tests

This commit is contained in:
stanjg 2018-05-26 20:58:49 +02:00
parent 095d85bb60
commit 86e7085396
No known key found for this signature in database
GPG key ID: 27D9DF9D28935303
4 changed files with 85 additions and 21 deletions

View file

@ -200,4 +200,11 @@ interface RepositoryInterface
* @return bool
*/
public function insertIgnore(array $values): bool;
/**
* Get the amount of entries in the database
*
* @return int
*/
public function count(): int;
}