Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | 1 | public static function create(array $targetGadgets = [], Parameters $parameters = null, int $version = 1): self |
|
37 | { |
||
38 | 1 | $setLight = new self(); |
|
39 | |||
40 | 1 | $setLight->type = self::TYPE; |
|
41 | 1 | $setLight->targetGadgets = $targetGadgets; |
|
42 | 1 | $setLight->parameters = $parameters; |
|
43 | 1 | $setLight->version = $version; |
|
44 | |||
45 | 1 | return $setLight; |
|
46 | } |
||
48 |