Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | 1 | public static function factory(string $wsdl) : \Spinen\Ncentral\NcentralClient |
|
15 | { |
||
16 | 1 | $engine = ExtSoapEngineFactory::fromOptions( |
|
17 | 1 | ExtSoapOptions::defaults($wsdl, []) |
|
18 | 1 | ->withClassMap(NcentralClassmap::getCollection()) |
|
19 | ); |
||
20 | 1 | $eventDispatcher = new EventDispatcher(); |
|
21 | |||
22 | 1 | return new NcentralClient($engine, $eventDispatcher); |
|
23 | } |
||
28 |