Skip to content

Commit 82f0a66

Browse files
Merge pull request #51 from laravelwebdev/analysis-vZWk0x
Apply fixes from StyleCI
2 parents 0af1ebd + 3861e1d commit 82f0a66

File tree

6 files changed

+3
-4
lines changed

6 files changed

+3
-4
lines changed

app/Models/ArsipDokumen.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ArsipDokumen extends Model
1010
{
1111
use HasFactory;
1212

13-
protected $guarded=[];
13+
protected $guarded = [];
1414

1515
public function kerangkaAcuan(): BelongsTo
1616
{

app/Models/KerangkaAcuan.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace App\Models;
44

55
use App\Helpers\Helper;
6-
use App\Models\ArsipDokumen;
76
use Illuminate\Database\Eloquent\Factories\HasFactory;
87
use Illuminate\Database\Eloquent\Model;
98
use Illuminate\Database\Eloquent\Relations\BelongsTo;

app/Models/TataNaskah.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public function template(): HasMany
3434
return $this->hasMany(Template::class);
3535
}
3636

37-
3837
public static function cacheEntities(): array
3938
{
4039
return [

app/Nova/ArsipDokumen.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
class ArsipDokumen extends Resource
1212
{
1313
public static $with = ['kerangkaAcuan'];
14+
1415
/**
1516
* Get the label for the resource.
1617
*

app/Nova/Template.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
class Template extends Resource
1212
{
1313
public static $with = ['tataNaskah'];
14+
1415
/**
1516
* Get the label for the resource.
1617
*

app/Policies/TataNaskahPolicy.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ public function addKodeNaskah(): bool
100100
->get();
101101
}
102102

103-
104103
public function addTemplate(): bool
105104
{
106105
return Policy::make()

0 commit comments

Comments
 (0)