Passed
Push — 0.7.0 ( 2c5a8e...dc9ed8 )
by Alexander
10:13 queued 11s
created
src/components/Cache/CacheServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,15 +40,15 @@
 block discarded – undo
40 40
      */
41 41
     public function register()
42 42
     {
43
-        $this->app->singleton('cache', function ($app) {
43
+        $this->app->singleton('cache', function($app) {
44 44
             return (new CacheManager($app));
45 45
         });
46 46
 
47
-        $this->app->singleton('cache.store', function ($app) {
47
+        $this->app->singleton('cache.store', function($app) {
48 48
             return $app['cache']->driver();
49 49
         });
50 50
 
51
-        $this->app->singleton('memcached.connector', function () {
51
+        $this->app->singleton('memcached.connector', function() {
52 52
             return new MemcachedConnector;
53 53
         });
54 54
     }
Please login to merge, or discard this patch.
src/components/Core/ProviderRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
             return;
138 138
         }
139 139
         
140
-        $this->app->make('events')->listen($events, function () use ($provider) {
140
+        $this->app->make('events')->listen($events, function() use ($provider) {
141 141
             $this->app->register($provider);
142 142
         });
143 143
     }
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      */
194 194
     public function writeManifest($manifest)
195 195
     {
196
-        if (! is_writable($dirname = dirname($this->manifestPath))) {
196
+        if ( ! is_writable($dirname = dirname($this->manifestPath))) {
197 197
             throw new Exception("The {$dirname} directory must be present and writable.");
198 198
         }
199 199
         
Please login to merge, or discard this patch.
src/components/Core/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -745,7 +745,7 @@  discard block
 block discarded – undo
745 745
         $this->register($instance = new $provider($this));
746 746
 
747 747
         if ( ! $this->isbooted()) {
748
-            $this->booting(function () use ($instance) {
748
+            $this->booting(function() use ($instance) {
749 749
                 $this->bootProviderClass($instance);
750 750
             });
751 751
         }
@@ -786,7 +786,7 @@  discard block
 block discarded – undo
786 786
 
787 787
         $this->bootAppCallbacks($this->bootingCallbacks);
788 788
 
789
-        array_walk($this->serviceProviders, function ($provider) {
789
+        array_walk($this->serviceProviders, function($provider) {
790 790
             $this->bootProviderClass($provider);
791 791
         });
792 792
 
Please login to merge, or discard this patch.