Passed
Push — master ( 294cf3...a47581 )
by Paweł
03:58
created

RebredirWeapon::calculateRequiredAscension()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 3

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
eloc 4
c 1
b 0
f 0
nc 3
nop 0
dl 0
loc 9
ccs 5
cts 5
cp 1
crap 3
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace AardsGerds\Game\Inventory\Weapon;
6
7
use AardsGerds\Game\Build\Attribute\Etherum;
8
use AardsGerds\Game\Build\Talent\SecretKnowledge\Ascension;
9
10
interface RebredirWeapon
11
{
12
    public function getEtherumLoad(): Etherum;
13
14
    public function getRequiredAscension(): Ascension;
15
}
16