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

MethodWithAdditionalParam::getName()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
nc 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