Completed
Push — master ( 3c1051...50a607 )
by Iman
09:32
created

BaseSituation   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Imanghafoori\HeyMan\Situations;
4
5
use Imanghafoori\HeyMan\Normilizers\InputNormalizer;
6
use Imanghafoori\HeyMan\Chain;
7
8
abstract class BaseSituation
9
{
10
    use InputNormalizer;
11
12
    protected $chain;
13
14
    /**
15
     * HeyMan constructor.
16
     *
17
     * @param Chain $chain
18
     */
19
    public function __construct(Chain $chain)
20
    {
21
        $this->chain = $chain;
22
    }
23
}