Completed
Push — master ( cc6863...b13233 )
by Ciaran
01:27
created

methodWithoutTypeHints()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace Fixtures\Prophecy;
4
5
abstract class MethodWithAdditionalParam extends WithArguments implements Named
6
{
7
    abstract public function getName($name = null);
8
9
    public function methodWithoutTypeHints($arg, $arg2 = null)
10
    {
11
    }
12
}
13