Files
breadcrumb-the-shire/core/Repository/Search/SearchQueryRepositoryInterface.php

18 lines
380 B
PHP
Raw Permalink Normal View History

2026-03-05 08:26:51 +01:00
<?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;
}