| 1 | <?php |
||
| 8 | class SavedSearchRepositoryCollection |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var SavedSearchRepositoryInterface |
||
| 12 | */ |
||
| 13 | private $savedSearchRepositories; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param SapiVersion $sapiVersion |
||
| 17 | * @param SavedSearchRepositoryInterface $savedSearchRepository |
||
| 18 | */ |
||
| 19 | public function addRepository( |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param SapiVersion $sapiVersion |
||
| 28 | * @return SavedSearchRepositoryInterface|null |
||
| 29 | */ |
||
| 30 | public function getRepository(SapiVersion $sapiVersion): ?SavedSearchRepositoryInterface |
||
| 38 | } |
||
| 39 |