lean-api/src/Lib/ApiSearchRequestInterface.php
2025-05-21 18:36:19 +00:00

13 lines
320 B
PHP

<?php
namespace Lean\Api\Lib;
use Ulmus\Entity\EntityInterface;
use Ulmus\EntityCollection;
use Ulmus\SearchRequest\SearchRequestInterface;
interface ApiSearchRequestInterface
{
public function getSearch() : SearchRequestInterface;
public function getResult() : EntityCollection|EntityInterface;
}