Passed
Push — master ( f5f731...fcc808 )
by Elf
02:42
created
src/AppsServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,8 @@
 block discarded – undo
54 54
 
55 55
         $this->mergeConfigFrom(__DIR__.'/../config/apps.php', 'apps');
56 56
 
57
-        if (! $this->app['config']->has('apps.domain')) {
58
-            $this->app['config']['apps.domain'] = array_map(function ($url) {
57
+        if (!$this->app['config']->has('apps.domain')) {
58
+            $this->app['config']['apps.domain'] = array_map(function($url) {
59 59
                 return parse_url($url, PHP_URL_HOST);
60 60
             }, $this->app['config']['apps.url']);
61 61
         }
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! function_exists('is_app')) {
3
+if (!function_exists('is_app')) {
4 4
     /**
5 5
      * Determine if a given identifier matches the current application identifier.
6 6
      *
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     }
27 27
 }
28 28
 
29
-if (! function_exists('app_url')) {
29
+if (!function_exists('app_url')) {
30 30
     /**
31 31
      * Generate an absolute URL to the given path.
32 32
      *
Please login to merge, or discard this patch.