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