@@ -84,7 +84,7 @@ |
||
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | if ($this->option('force')) { |
| 87 | - DB::transaction(function () use ($diffStatements) { |
|
| 87 | + DB::transaction(function() use ($diffStatements) { |
|
| 88 | 88 | foreach ($diffStatements as $statement) { |
| 89 | 89 | DB::statement($statement); |
| 90 | 90 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | { |
| 32 | 32 | $this->mergeConfigFrom(__DIR__.'/../../config/laravel-database.php', 'laravel-database'); |
| 33 | 33 | |
| 34 | - $this->app->bind('Ablunier\Laravel\Database\Contracts\Manager\ModelManager', function ($app) { |
|
| 34 | + $this->app->bind('Ablunier\Laravel\Database\Contracts\Manager\ModelManager', function($app) { |
|
| 35 | 35 | return new ModelManager($app); |
| 36 | 36 | }); |
| 37 | 37 | |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | $lifetime = $this->lifetime; |
| 74 | 74 | unset($this->lifetime); |
| 75 | 75 | |
| 76 | - return $this->cache->remember($key, $lifetime, function () use ($method, $params) { |
|
| 76 | + return $this->cache->remember($key, $lifetime, function() use ($method, $params) { |
|
| 77 | 77 | return call_user_func_array([$this->repository, $method], $params); |
| 78 | 78 | }); |
| 79 | 79 | } |