@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create(config('authentication-log.table_name'), function (Blueprint $table) { |
|
| 16 | + Schema::create(config('authentication-log.table_name'), function(Blueprint $table) { |
|
| 17 | 17 | $table->bigIncrements('id'); |
| 18 | 18 | $table->morphs('auth'); |
| 19 | 19 | $table->string('ip_address', 45)->nullable(); |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | * |
| 26 | 26 | * @var array |
| 27 | 27 | */ |
| 28 | - protected $guarded = ['auth_id', 'auth_type']; |
|
| 28 | + protected $guarded = [ 'auth_id', 'auth_type' ]; |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * The attributes that should be cast to native types. |