Skip to content

Commit a2510db

Browse files
committed
cs:fix;
1 parent 8b08abd commit a2510db

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Eloquent/DocumentModel.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use Illuminate\Contracts\Queue\QueueableCollection;
1212
use Illuminate\Contracts\Queue\QueueableEntity;
1313
use Illuminate\Contracts\Support\Arrayable;
14-
use Illuminate\Database\Eloquent\Casts\Json;
1514
use Illuminate\Database\Eloquent\Concerns\HasAttributes;
1615
use Illuminate\Database\Eloquent\Model;
1716
use Illuminate\Database\Eloquent\Relations\Relation;

tests/Casts/ArrayTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function testArray(): void
2626
DB::connection()
2727
->table((new Casting())->getTable())
2828
->where('id', $model->id)
29-
->first()->arrayValue
29+
->first()->arrayValue,
3030
);
3131
self::assertEquals(["Dreamin' 'bout the spot that right now, I'm actually in", 'g-eazy' => 'Still'], $model->arrayValue);
3232

@@ -37,7 +37,7 @@ public function testArray(): void
3737
DB::connection()
3838
->table((new Casting())->getTable())
3939
->where('id', $model->id)
40-
->first()->arrayValue
40+
->first()->arrayValue,
4141
);
4242
self::assertEquals(['What if I just said, f*ck it, never followed my dreams?'], $model->arrayValue);
4343
}

0 commit comments

Comments
 (0)