13 lines
320 B
PHP
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;
|
|
} |