Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3.7085 |
Changes | 0 |
1 | <?php |
||
13 | 2 | public function __construct($profile = null) { |
|
14 | 2 | if (is_string($profile)) { |
|
15 | $profile = new Profile($profile); |
||
16 | } |
||
17 | 2 | if (!($profile instanceof Profile)) { |
|
18 | 2 | throw new \InvalidArgumentException('$profile must be a string or instanceof gossi\code\profiles\Profile'); |
|
19 | } |
||
20 | $this->profile = $profile; |
||
21 | } |
||
22 | |||
36 |