Completed
Push — master ( c432ac...8e117f )
by Mathijs
04:01
created

MapResult::getConfig()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace mcorten87\rabbitmq_api\objects;
4
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)
32
    {
33
        $this->method = $method;
34
        $this->url = $url;
35
        $this->config = $config;
36
    }
37
}
38