| 1 | <?php |
||
| 11 | class RestRequestOptionsRegistry |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var array|RestRequestOptions[] associative array |
||
| 15 | */ |
||
| 16 | private $restRequestOptionsByController; |
||
| 17 | |||
| 18 | 96 | public function __construct() |
|
| 22 | |||
| 23 | 96 | public function registerRestRequestOptions(RestRequestOptions $options, string $controller) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @param string $controller |
||
| 30 | * @return RestRequestOptions|null |
||
| 31 | */ |
||
| 32 | 37 | public function getRestRequestOptionsForController(string $controller) |
|
| 36 | } |
||
| 37 |