Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
46 | public static function create(array $state){ |
||
47 | return new ClientState( |
||
48 | $state['type'], |
||
49 | $state['paused'], |
||
50 | $state['stoppable'], |
||
51 | $state['scriptId'], |
||
52 | $state['machineId'], |
||
53 | $state['script_config'] ??null, |
||
54 | $state['proxy'] ?? null, |
||
55 | $state['credentials'] ?? null |
||
56 | ); |
||
60 | } |