Completed
Pull Request — master (#468)
by Christophe
01:58
created

WithPhpdocClass::__call()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
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