Skip to content

Commit 51cc3eb

Browse files
committed
Apply fixes from StyleCI
1 parent 47e6d0f commit 51cc3eb

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use DateTimeImmutable;
1212
use DateTimeInterface;
1313
use Illuminate\Contracts\Database\Eloquent\Castable;
14-
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
1514
use Illuminate\Contracts\Database\Eloquent\CastsInboundAttributes;
1615
use Illuminate\Contracts\Support\Arrayable;
1716
use Illuminate\Database\Eloquent\Casts\AsArrayObject;

tests/Database/DatabaseEloquentModelTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Illuminate\Tests\Database;
44

5-
use Closure;
65
use DateTime;
76
use DateTimeImmutable;
87
use DateTimeInterface;
@@ -3365,7 +3364,7 @@ public function testMergeingStringableObjectCastUSesStringRepresentation()
33653364
$stringable->cast = 'test';
33663365

33673366
$model = (new EloquentModelCastingStub)->mergeCasts([
3368-
'something' => $stringable
3367+
'something' => $stringable,
33693368
]);
33703369

33713370
$this->assertEquals('test', $model->getCasts()['something']);

0 commit comments

Comments
 (0)