TestCallables   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 12
c 0
b 0
f 0
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 2 1
A staticMethod() 0 2 1
A instanceMethod() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace DanBettles\Gestalt\Tests;
6
7
class TestCallables
8
{
9
    public function instanceMethod()
10
    {
11
    }
12
13
    public static function staticMethod()
14
    {
15
    }
16
17
    public function __invoke()
18
    {
19
    }
20
}
21