1 | <?php |
||
5 | class MapResult |
||
6 | { |
||
7 | /** |
||
8 | * @var Method |
||
9 | */ |
||
10 | private $method; |
||
11 | |||
12 | /** @return Method */ |
||
13 | public function getMethod() { return $this->method; } |
||
14 | |||
15 | /** |
||
16 | * @var Url |
||
17 | */ |
||
18 | private $url; |
||
19 | |||
20 | /** @return Url */ |
||
21 | public function getUrl() { return $this->url; } |
||
22 | |||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | private $config; |
||
27 | |||
28 | /** @return array */ |
||
29 | public function getConfig() { return $this->config; } |
||
30 | |||
31 | public function __construct(Method $method, Url $url, array $config) |
||
37 | } |
||
38 |