Completed
Push — master ( 6af785...cbc83f )
by Iman
05:36
created

ConditionsFacade::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Imanghafoori\HeyMan\Conditions;
4
5
use Imanghafoori\HeyMan\Chain;
6
7
class ConditionsFacade
8
{
9
    /**
10
     * @var Chain
11
     */
12
    private $chain;
13
14
    /**
15
     * YouShouldHave constructor.
16
     *
17
     * @param Chain $chain
18
     */
19
    public function __construct(Chain $chain)
20
    {
21
        $this->chain = $chain;
22
    }
23
24
    use \Imanghafoori\HeyMan\Conditions\Authentication;
25
    use \Imanghafoori\HeyMan\Conditions\Gate;
26
    use \Imanghafoori\HeyMan\Conditions\Callbacks;
27
    use \Imanghafoori\HeyMan\Conditions\Session;
28
29
}