Passed
Push — main ( c92672...bdd118 )
by Daniel
16:01
created

TestCallables::instanceMethod()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

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