ClassWithFinalMethods   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A foo() 0 3 1
A bar() 0 3 1
A baz() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace ProxyManagerTestAsset;
6
7
use PHPUnit\Framework\TestCase;
8
9
/**
10
 * Base test class to play around with final pre-existing methods
11
 *
12
 * @author Jefersson Nathan <[email protected]>
13
 * @license MIT
14
 */
15
class ClassWithFinalMethods extends TestCase
16
{
17
    final public function foo()
18
    {
19
    }
20
21
    final private function bar()
0 ignored issues
show
Unused Code introduced by
This method is not used, and could be removed.
Loading history...
22
    {
23
    }
24
25
    final protected function baz()
26
    {
27
    }
28
}
29