@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('resource_logs', function (Blueprint $table) { |
|
| 16 | + Schema::create('resource_logs', function(Blueprint $table) { |
|
| 17 | 17 | $table->id(); |
| 18 | 18 | $table->string('log'); |
| 19 | 19 | $table->integer('resource_type'); |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | */ |
| 36 | 36 | public function register() |
| 37 | 37 | { |
| 38 | - $this->app->singleton('record', function ($app) { |
|
| 38 | + $this->app->singleton('record', function($app) { |
|
| 39 | 39 | return new LogManager($app); |
| 40 | 40 | }); |
| 41 | 41 | |
@@ -83,7 +83,7 @@ |
||
| 83 | 83 | */ |
| 84 | 84 | |
| 85 | 85 | 'drivers' => [ |
| 86 | - 'log_record' => env('STETHOSCOPE_LOG_FILE' ,'file') |
|
| 86 | + 'log_record' => env('STETHOSCOPE_LOG_FILE', 'file') |
|
| 87 | 87 | ] |
| 88 | 88 | |
| 89 | 89 | ]; |