Completed
Push — master ( 3394d6...2a04c8 )
by Zach
03:20
created
src/LaundromatServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function register()
15 15
     {
16
-        Collection::macro('clean', function ($class = null) {
17
-            return $this->map(function (Model $item) use ($class) {
16
+        Collection::macro('clean', function($class = null) {
17
+            return $this->map(function(Model $item) use ($class) {
18 18
                 return $item->clean($class);
19 19
             });
20 20
         });
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     protected function registerCommands()
29 29
     {
30
-        $this->app->singleton('command.laundromat.create', function ($app) {
30
+        $this->app->singleton('command.laundromat.create', function($app) {
31 31
             return $app['LaravelLaundromat\commands\CreateCleaner'];
32 32
         });
33 33
 
Please login to merge, or discard this patch.