Skip to content

Commit e2eed52

Browse files
committed
Apply fixes from StyleCI
1 parent 63fde64 commit e2eed52

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Models/Type.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function scopeOrdered(Builder $query): Builder
4242
return $query->orderByDesc('is_system')->orderBy('id');
4343
}
4444

45-
public function icon(): string | array
45+
public function icon(): string|array
4646
{
4747
return Str::contains($this->icon, ' ')
4848
? explode(' ', $this->icon)
@@ -71,7 +71,7 @@ public function folder(): string
7171
? Config::get('enso.files.testingFolder')
7272
: $this->folder;
7373

74-
if (!Storage::has($folder)) {
74+
if (! Storage::has($folder)) {
7575
Storage::makeDirectory($folder);
7676
}
7777

src/Tables/Builders/Type.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class Type implements Table
1010
{
11-
private const TemplatePath = __DIR__ . '/../Templates/types.json';
11+
private const TemplatePath = __DIR__.'/../Templates/types.json';
1212

1313
public function query(): Builder
1414
{

0 commit comments

Comments
 (0)