Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
25 | public static function create( |
||
26 | LoopInterface $loop, |
||
27 | AuthenticationInterface $auth, |
||
28 | array $options = [] |
||
29 | ): self { |
||
30 | $options = ApiSettings::getOptions($auth, $options, 'Async'); |
||
31 | $client = Factory::create($loop, $options); |
||
32 | return new self($client); |
||
33 | } |
||
34 | |||
53 |