1 | <?php |
||
9 | class Path extends AbstractModel implements Arrayable { |
||
10 | |||
11 | use ExtensionPart; |
||
12 | |||
13 | private $operations; |
||
14 | |||
15 | /** @var string */ |
||
16 | private $path; |
||
17 | |||
18 | 8 | public function __construct($path, $contents = []) { |
|
23 | |||
24 | 8 | private function parse($contents) { |
|
36 | |||
37 | 7 | public function toArray() { |
|
38 | 7 | return array_merge( |
|
39 | 7 | CollectionUtils::toArrayRecursive($this->operations), |
|
40 | 7 | CollectionUtils::toArrayRecursive($this->getExtensions()) |
|
41 | 7 | ); |
|
42 | } |
||
43 | |||
44 | /** |
||
45 | * Returns this path |
||
46 | * |
||
47 | * @return string |
||
48 | */ |
||
49 | 1 | public function getPath() { |
|
52 | |||
53 | /** |
||
54 | * Gets the operation for the given method, creates one if none exists |
||
55 | * |
||
56 | * @param string $method |
||
57 | * @return Operation |
||
58 | */ |
||
59 | 7 | public function getOperation($method) { |
|
66 | |||
67 | /** |
||
68 | * Sets the operation for a method |
||
69 | * |
||
70 | * @param string $method |
||
71 | * @param Operation $operation |
||
72 | */ |
||
73 | public function setOperation($method, Operation $operation) { |
||
76 | |||
77 | /** |
||
78 | * |
||
79 | * @param string $method |
||
80 | * @return bool |
||
81 | */ |
||
82 | public function hasOperation($method) { |
||
85 | |||
86 | /** |
||
87 | * Removes an operation for the given method |
||
88 | * |
||
89 | * @param string $method |
||
90 | */ |
||
91 | public function removeOperation($method) { |
||
94 | |||
95 | /** |
||
96 | * Returns all methods for this path |
||
97 | * |
||
98 | * @return Set |
||
99 | */ |
||
100 | public function getMethods() { |
||
103 | |||
104 | } |
||
105 |