File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public function scopeOrdered(Builder $query): Builder
42
42
return $ query ->orderByDesc ('is_system ' )->orderBy ('id ' );
43
43
}
44
44
45
- public function icon (): string | array
45
+ public function icon (): string | array
46
46
{
47
47
return Str::contains ($ this ->icon , ' ' )
48
48
? explode (' ' , $ this ->icon )
@@ -71,7 +71,7 @@ public function folder(): string
71
71
? Config::get ('enso.files.testingFolder ' )
72
72
: $ this ->folder ;
73
73
74
- if (!Storage::has ($ folder )) {
74
+ if (! Storage::has ($ folder )) {
75
75
Storage::makeDirectory ($ folder );
76
76
}
77
77
Original file line number Diff line number Diff line change 8
8
9
9
class Type implements Table
10
10
{
11
- private const TemplatePath = __DIR__ . '/../Templates/types.json ' ;
11
+ private const TemplatePath = __DIR__ . '/../Templates/types.json ' ;
12
12
13
13
public function query (): Builder
14
14
{
You can’t perform that action at this time.
0 commit comments