OverrideClass   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 2
dl 0
loc 8
rs 10
c 1
b 0
f 1
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testMe() 0 3 1
1
<?php
2
3
namespace Test\TestClass;
4
5
class OverrideClass
6
{
7
    /**
8
     * @return int
9
     */
10
    public function testMe()
11
    {
12
        return 2;
13
    }
14
}
15