Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
52 | 1 | return self::createFromBuzz( |
|
53 | $locator, |
||
54 | $loop, |
||
55 | 1 | (new Browser($loop, Sender::createFromLoopDns($loop, $resolver)))->withOptions([ |
|
56 | 1 | 'streaming' => true, |
|
57 | ]), |
||
58 | $options |
||
59 | ); |
||
60 | } |
||
61 | |||
62 | /** |
||
63 | * @param Locator $locator |
||
64 | * @param LoopInterface $loop |
||
65 | * @param Browser $buzz |
||
66 | * @param array $options |
||
67 | * @return Client |
||
68 | */ |
||
83 |