Completed
Pull Request — master (#274)
by Christophe
02:30
created

WithVirtuallyPrivateMethod   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 0
dl 0
loc 15
c 0
b 0
f 0
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __toString() 0 4 1
A _getName() 0 3 1
A isAbstract() 0 3 1
1
<?php
2
3
namespace Fixtures\Prophecy;
4
5
class WithVirtuallyPrivateMethod
6
{
7
    public function __toString()
8
    {
9
        return '';
10
    }
11
12
    public function _getName()
13
    {
14
    }
15
16
    public function isAbstract()
17
    {
18
    }
19
}
20