Updated to coding-standard library v1.2.2

This commit is contained in:
Alejandro Celaya
2019-08-01 19:49:54 +02:00
parent 3562afc2bd
commit aff1df32f2
63 changed files with 78 additions and 83 deletions

View File

@@ -16,9 +16,9 @@ interface PaginableRepositoryInterface
* @return array
*/
public function findList(
int $limit = null,
int $offset = null,
string $searchTerm = null,
?int $limit = null,
?int $offset = null,
?string $searchTerm = null,
array $tags = [],
$orderBy = null
): array;
@@ -30,5 +30,5 @@ interface PaginableRepositoryInterface
* @param array $tags
* @return int
*/
public function countList(string $searchTerm = null, array $tags = []): int;
public function countList(?string $searchTerm = null, array $tags = []): int;
}