src/Repositories/Contracts/BaseRepositoryContract.php
Method all
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function all(array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $orderDirection = 'asc', string $orderColumn = 'id');
Method allWithOrder
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function allWithOrder(array $search = [], ?int $skip = null, ?int $limit = null, ?string $orderBy = null, string $direction = 'asc', array $columns = ['*']);