Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | 1 | public static function create(array $sequence, int $repeat = 1, array $targetLights = ['1']): self |
|
33 | { |
||
34 | 1 | $animations = new self(); |
|
35 | |||
36 | 1 | $animations->repeat = $repeat; |
|
37 | 1 | $animations->targetLights = $targetLights; |
|
38 | 1 | $animations->sequence = $sequence; |
|
39 | |||
40 | 1 | return $animations; |
|
41 | } |
||
43 |