Passed
Pull Request — master (#2)
by
unknown
05:11
created
src/Soap/Soap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
 			try {
99 99
 				$this->client = new SoapClient($this->getConfig('wsdl'), $options);
100 100
 				return (bool)$this->client;
101
-			} catch(SoapFault $fault) {
101
+			} catch (SoapFault $fault) {
102 102
 				$this->showError($fault->faultstring);
103 103
 			}
104 104
 		}
Please login to merge, or discard this patch.
config/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
  */
47 47
 Router::defaultRouteClass(DashedRoute::class);
48 48
 
49
-Router::scope('/', function (RouteBuilder $routes) {
49
+Router::scope('/', function(RouteBuilder $routes) {
50 50
     // Register scoped middleware for in scopes.
51 51
     $routes->registerMiddleware('csrf', new CsrfProtectionMiddleware([
52 52
         'httpOnly' => true
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 	$routes->fallbacks(DashedRoute::class);
93 93
 });
94 94
 
95
-Router::plugin('VatNumberCheck', ['path' => '/vat_number_check'], function (RouteBuilder $routes) {
95
+Router::plugin('VatNumberCheck', ['path' => '/vat_number_check'], function(RouteBuilder $routes) {
96 96
 	$routes->addExtensions(['json']);
97 97
 	$routes->fallbacks(InflectedRoute::class);
98 98
 });
Please login to merge, or discard this patch.