Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class ReactFactory |
||
16 | { |
||
17 | /** |
||
18 | * Build a react Event Loop. |
||
19 | */ |
||
20 | 110 | public static function buildEventLoop(): LoopInterface |
|
21 | { |
||
22 | 110 | return EventLoopFactory::create(); |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * Build a React Http Client. |
||
27 | * |
||
28 | * @param ConnectorInterface|null $connector only pass this argument if you need to customize DNS |
||
29 | * behaviour |
||
30 | */ |
||
31 | 106 | public static function buildHttpClient( |
|
38 | } |
||
39 | } |
||
40 |