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

MethodWithAdditionalParam   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
getName() 0 1 ?
A methodWithoutTypeHints() 0 3 1
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