1 | <?php declare(strict_types = 1); |
||
17 | class OpenApiPath extends Path |
||
18 | { |
||
19 | /** |
||
20 | * Path constructor. |
||
21 | * |
||
22 | * @param string $path |
||
23 | * @param \stdClass $definition |
||
24 | */ |
||
25 | public function __construct(string $path, \stdClass $definition) |
||
41 | |||
42 | /** |
||
43 | * @param string $method |
||
44 | * @param \stdClass $operationDefinition |
||
45 | * |
||
46 | * @return Operation |
||
47 | */ |
||
48 | protected function createOperation(string $method, \stdClass $operationDefinition): Operation |
||
57 | } |
||
58 |