Fix backend code styling

This commit is contained in:
MakingCG
2021-05-03 14:53:43 +00:00
committed by GitHub Actions
parent 8a784f4520
commit cc4f9c0b89
4 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@@ -182,7 +182,6 @@ class SetupOasisEnvironment extends Command
'value' => 'system/oasis-og-image.jpg',
],
])->each(function ($option) {
Setting::updateOrCreate([
'name' => $option['name'],
], [

View File

@@ -15,7 +15,8 @@ class Invoice extends Model
'bag' => 'array',
];
public function getMimetype() {
public function getMimetype()
{
return 'pdf';
}

View File

@@ -1,7 +1,6 @@
<?php
namespace App\Models;
use App\Notifications\ResetPassword;
use App\Traits\Oasis;
use ByteUnits\Metric;
use Illuminate\Support\Str;
@@ -10,6 +9,7 @@ use App\Services\HelperService;
use App\Services\StripeService;
use Laravel\Sanctum\HasApiTokens;
use Kyslik\ColumnSortable\Sortable;
use App\Notifications\ResetPassword;
use Illuminate\Support\Facades\Storage;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\Factories\HasFactory;