1 | <?php |
||
11 | class Result |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $container; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $filePath; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $uriPath; |
||
27 | |||
28 | /** |
||
29 | * @var TransformerInterface[] |
||
30 | */ |
||
31 | protected $transformers = []; |
||
32 | |||
33 | /** |
||
34 | * @var array |
||
35 | */ |
||
36 | protected $routeOptions = []; |
||
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | public function getContainer() |
||
45 | |||
46 | /** |
||
47 | * @param string $container |
||
48 | */ |
||
49 | 2 | public function setContainer($container) |
|
53 | |||
54 | /** |
||
55 | * @return string |
||
56 | */ |
||
57 | public function getFilePath() |
||
61 | |||
62 | /** |
||
63 | * @param string $filePath |
||
64 | */ |
||
65 | 2 | public function setFilePath($filePath) |
|
69 | |||
70 | /** |
||
71 | * @return TransformerInterface[] |
||
72 | */ |
||
73 | public function getTransformers() |
||
77 | |||
78 | /** |
||
79 | * @param TransformerInterface[] $transformers |
||
80 | */ |
||
81 | 1 | public function setTransformers(array $transformers) |
|
85 | |||
86 | /** |
||
87 | * @return string |
||
88 | */ |
||
89 | public function getUriPath() |
||
93 | |||
94 | /** |
||
95 | * @param string $uriPath |
||
96 | */ |
||
97 | 2 | public function setUriPath($uriPath) |
|
101 | |||
102 | /** |
||
103 | * @return array |
||
104 | */ |
||
105 | public function getRouteOptions() |
||
109 | |||
110 | /** |
||
111 | * @param array $routeOptions |
||
112 | */ |
||
113 | 3 | public function setRouteOptions(array $routeOptions) |
|
117 | } |
||
118 |