forked from fa/breadcrumb-the-shire
18 lines
380 B
PHP
18 lines
380 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Repository\Search;
|
||
|
|
|
||
|
|
interface SearchQueryRepositoryInterface
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @param array<int, mixed> $params
|
||
|
|
* @return array<int, mixed>
|
||
|
|
*/
|
||
|
|
public function selectRows(string $sql, array $params = []): array;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param array<int, mixed> $params
|
||
|
|
*/
|
||
|
|
public function selectCount(string $sql, array $params = []): int;
|
||
|
|
}
|