code style fix

This commit is contained in:
Peter Papp
2021-04-25 09:02:00 +02:00
parent e103e61617
commit c47886fb8b
157 changed files with 2250 additions and 2583 deletions
+3 -4
View File
@@ -1,10 +1,9 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Str;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Zip extends Model
{
@@ -29,7 +28,7 @@ class Zip extends Model
parent::boot();
static::creating(function ($model) {
$model->id = (string)Str::uuid();
$model->id = (string) Str::uuid();
});
}
}