Test Failed
Push — master ( 41d27c...a3b7e3 )
by Paweł
03:17
created

Decision   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 1
c 1
b 0
f 0
dl 0
loc 7
ccs 0
cts 2
cp 0
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace AardsGerds\Game\Event;
6
7
interface Decision extends \Stringable
8
{
9
    public function __invoke(): Event;
10
}
11