Completed
Push — master ( b4400e...96f861 )
by Christophe
17s queued 12s
created

WithPhpdocClass   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __call() 0 4 1
1
<?php
2
3
4
namespace Fixtures\Prophecy;
5
6
7
/**
8
 * @method string name(string $gender = null)
9
 * @method mixed randomElement(array $array = array('a', 'b', 'c'))
10
 */
11
class WithPhpdocClass
12
{
13
    public function __call($name, $arguments)
14
    {
15
        // TODO: Implement __call() method.
16
    }
17
}
18