Completed
Push — master ( a70ca2...b8c2a5 )
by Daniel
14:22
created

MatcherDumper::getMethods()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Cmobi\RabbitmqBundle\Routing\Matcher\Dumper;
4
5
use Cmobi\RabbitmqBundle\Routing\MethodCollection;
6
7
abstract class MatcherDumper
8
{
9
10
    private $methods;
11
12
    public function __construct(MethodCollection $method)
13
    {
14
        $this->methods = $method;
15
    }
16
17
    /**
18
     * {@inheritdoc}
19
     */
20
    public function getMethods()
21
    {
22
        return $this->methods;
23
    }
24
}
25