| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public static function create(int $timeout, array $recognizers, array $events, array $proxies = []): self |
||
| 43 | { |
||
| 44 | $setLight = new self(); |
||
| 45 | |||
| 46 | $setLight->type = self::TYPE; |
||
| 47 | $setLight->timeout = $timeout; |
||
| 48 | $setLight->recognizers = $recognizers; |
||
| 49 | $setLight->events = $events; |
||
| 50 | $setLight->proxies = $proxies; |
||
| 51 | |||
| 52 | return $setLight; |
||
| 53 | } |
||
| 55 |