@@ -14,7 +14,7 @@ |
||
14 | 14 | public static function factory(string $wsdl) : \Spinen\Ncentral\NcentralClient |
15 | 15 | { |
16 | 16 | $engine = ExtSoapEngineFactory::fromOptions( |
17 | - ExtSoapOptions::defaults($wsdl, []) |
|
17 | + ExtSoapOptions::defaults($wsdl, [ ]) |
|
18 | 18 | ->withClassMap(NcentralClassmap::getCollection()) |
19 | 19 | ); |
20 | 20 | $eventDispatcher = new EventDispatcher(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | return SoapConfig::create() |
12 | 12 | ->setEngine($engine = ExtSoapEngineFactory::fromOptions( |
13 | 13 | ExtSoapOptions::defaults($wsdl_path, []) |
14 | - ->disableWsdlCache() |
|
14 | + ->disableWsdlCache() |
|
15 | 15 | )) |
16 | 16 | ->setTypeDestination('src/Type') |
17 | 17 | ->setTypeNamespace('Spinen\Ncentral\Type') |
@@ -10,7 +10,7 @@ |
||
10 | 10 | |
11 | 11 | return SoapConfig::create() |
12 | 12 | ->setEngine($engine = ExtSoapEngineFactory::fromOptions( |
13 | - ExtSoapOptions::defaults($wsdl_path, []) |
|
13 | + ExtSoapOptions::defaults($wsdl_path, [ ]) |
|
14 | 14 | ->disableWsdlCache() |
15 | 15 | )) |
16 | 16 | ->setTypeDestination('src/Type') |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | { |
43 | 43 | $this->app->alias(NcentralClient::class, 'ncentral'); |
44 | 44 | |
45 | - $this->mergeConfigFrom(__DIR__ . '/../../config/clickup.php', 'clickup'); |
|
45 | + $this->mergeConfigFrom(__DIR__.'/../../config/clickup.php', 'clickup'); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | { |
55 | 55 | $this->app->singleton( |
56 | 56 | NcentralClient::class, |
57 | - function (Application $app) { |
|
57 | + function(Application $app) { |
|
58 | 58 | return NcentralClientFactory::factory(env('NCENTRAL_WSDL_PATH')); |
59 | 59 | } |
60 | 60 | ); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | if ($this->app->runningInConsole()) { |
71 | 71 | $this->publishes( |
72 | 72 | [ |
73 | - __DIR__ . '/../../config/soap-client.php' => config_path('soap-client.php'), |
|
73 | + __DIR__.'/../../config/soap-client.php' => config_path('soap-client.php'), |
|
74 | 74 | ], |
75 | 75 | 'soap-client' |
76 | 76 | ); |