ClassWithFinalMethods::foo()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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