Fix backend code styling

This commit is contained in:
MakingCG
2021-07-22 15:28:36 +00:00
committed by GitHub Actions
parent fffede1c10
commit 7cb485fb43
50 changed files with 80 additions and 97 deletions
@@ -1,9 +1,6 @@
<?php
namespace Domain\Pages\Actions;
use Domain\Pages\Models\Page;
class SeedDefaultPagesAction
@@ -16,4 +13,4 @@ class SeedDefaultPagesAction
collect(config('content.pages'))
->each(fn ($page) => Page::updateOrCreate($page));
}
}
}
+1 -1
View File
@@ -8,7 +8,7 @@ use Illuminate\Database\Eloquent\Factories\HasFactory;
/**
* @property string slug
* @property string title
* @property boolean visibility
* @property bool visibility
* @property string content
*/
class Page extends Model