Skip to content

Commit 89c093f

Browse files
committed
Apply fixes from StyleCI
1 parent 6d9550c commit 89c093f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Integration/Database/DatabaseCustomCastsTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function test_custom_casting()
4949
$this->assertEquals(['name' => 'Taylor'], $model->array_object->toArray());
5050
$this->assertEquals(['name' => 'Taylor'], $model->array_object_json->toArray());
5151
$this->assertEquals(['name' => 'Taylor'], $model->collection->toArray());
52-
$this->assertSame('Taylor', (string)$model->stringable);
52+
$this->assertSame('Taylor', (string) $model->stringable);
5353

5454
$model->array_object['age'] = 34;
5555
$model->array_object['meta']['title'] = 'Developer';
@@ -85,7 +85,7 @@ public function test_custom_casting_nullable_values()
8585
$model = new TestEloquentModelWithCustomCastsNullable();
8686

8787
$model->array_object = null;
88-
$model->array_object_json = null;
88+
$model->array_object_json = null;
8989
$model->collection = collect();
9090
$model->stringable = null;
9191

@@ -96,7 +96,7 @@ public function test_custom_casting_nullable_values()
9696
$this->assertEmpty($model->array_object);
9797
$this->assertEmpty($model->array_object_json);
9898
$this->assertEmpty($model->collection);
99-
$this->assertSame('', (string)$model->stringable);
99+
$this->assertSame('', (string) $model->stringable);
100100

101101
$model->array_object['name'] = 'Taylor';
102102
$model->array_object['meta']['title'] = 'Developer';

0 commit comments

Comments
 (0)