| 1 | <?php |
||
| 15 | class RestRequestOptionsBuilder |
||
| 16 | { |
||
| 17 | private $validator; |
||
| 18 | |||
| 19 | 83 | public function __construct(RestRequestOptionsValidator $validator) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param array|RestAnnotationInterface[] $annotations |
||
| 26 | * @param ReflectionMethod $reflectionMethod |
||
| 27 | * @return RestRequestOptions |
||
| 28 | * @throws ConfigurationException |
||
| 29 | */ |
||
| 30 | 83 | public function buildOptions(array $annotations, ReflectionMethod $reflectionMethod): RestRequestOptions |
|
| 52 | } |
||
| 53 |