Skip to content

Commit 7d3ed04

Browse files
committed
Apply fixes from StyleCI
1 parent 6e26310 commit 7d3ed04

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Integration/IgnoreGettersTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ class IgnoreGettersTest extends TestCase
1515
public function it_return_the_default_value_when_attribute_is_null()
1616
{
1717
$user = User::create([
18-
'name' => 'foo',
19-
'email' => 'foo@bar.com',
20-
'color' => null
21-
]);
18+
'name' => 'foo',
19+
'email' => 'foo@bar.com',
20+
'color' => null,
21+
]);
2222

2323
$this->assertEquals('#000000', $user->color);
2424
$this->assertEquals('#000000', $user->refresh()->toArray()['color']);

0 commit comments

Comments
 (0)