Passed
Push — master ( 15b19d...384de0 )
by Nikolay
11:50 queued 06:02
created
src/Common/Providers/LicenseProvider.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,11 +49,11 @@
 block discarded – undo
49 49
     {
50 50
         $di->setShared(
51 51
             self::SERVICE_NAME,
52
-            function () {
52
+            function() {
53 53
                 $provider = null;
54 54
                 try {
55
-                    $provider =  new License('http://127.0.0.1:8223');
56
-                } catch (Error $exception){
55
+                    $provider = new License('http://127.0.0.1:8223');
56
+                } catch (Error $exception) {
57 57
                     Util::sysLogMsg(__CLASS__, $exception);
58 58
                 }
59 59
                 return $provider;
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,8 @@
 block discarded – undo
49 49
     {
50 50
         $di->setShared(
51 51
             self::SERVICE_NAME,
52
-            function () {
52
+            function ()
53
+            {
53 54
                 $provider = null;
54 55
                 try {
55 56
                     $provider =  new License('http://127.0.0.1:8223');
Please login to merge, or discard this patch.