diff --git a/tests/Database/DatabaseEloquentHasManyThroughIntegrationTest.php b/tests/Database/DatabaseEloquentHasManyThroughIntegrationTest.php index d6c7c8cd0d8..ffe9fa9b9dc 100644 --- a/tests/Database/DatabaseEloquentHasManyThroughIntegrationTest.php +++ b/tests/Database/DatabaseEloquentHasManyThroughIntegrationTest.php @@ -126,7 +126,7 @@ public function testWhereHasOnARelationWithCustomIntermediateAndLocalKey() public function testFirstOrFailThrowsAnException() { HasManyThroughTestCountry::create(['id' => 1, 'name' => 'United States of America', 'shortname' => 'us']) - ->users()->create(['id' => 1, 'email' => 'taylorotwell@gmail.com', 'country_short' => 'us']); + ->users()->create(['id' => 1, 'email' => 'taylorotwell@gmail.com', 'country_short' => 'us']); HasManyThroughTestCountry::first()->posts()->firstOrFail(); } @@ -210,9 +210,9 @@ protected function seedData() HasManyThroughTestCountry::create(['id' => 1, 'name' => 'United States of America', 'shortname' => 'us']) ->users()->create(['id' => 1, 'email' => 'taylorotwell@gmail.com', 'country_short' => 'us']) ->posts()->createMany([ - ['title' => 'A title', 'body' => 'A body', 'email' => 'taylorotwell@gmail.com'], - ['title' => 'Another title', 'body' => 'Another body', 'email' => 'taylorotwell@gmail.com'], - ]); + ['title' => 'A title', 'body' => 'A body', 'email' => 'taylorotwell@gmail.com'], + ['title' => 'Another title', 'body' => 'Another body', 'email' => 'taylorotwell@gmail.com'], + ]); } /** @@ -221,11 +221,11 @@ protected function seedData() protected function seedDefaultData() { HasManyThroughDefaultTestCountry::create(['id' => 1, 'name' => 'United States of America']) - ->users()->create(['id' => 1, 'email' => 'taylorotwell@gmail.com']) - ->posts()->createMany([ - ['title' => 'A title', 'body' => 'A body'], - ['title' => 'Another title', 'body' => 'Another body'], - ]); + ->users()->create(['id' => 1, 'email' => 'taylorotwell@gmail.com']) + ->posts()->createMany([ + ['title' => 'A title', 'body' => 'A body'], + ['title' => 'Another title', 'body' => 'Another body'], + ]); } /** diff --git a/tests/Notifications/NotificationSlackChannelTest.php b/tests/Notifications/NotificationSlackChannelTest.php index 9903b9cc90a..5be84a6b0b6 100644 --- a/tests/Notifications/NotificationSlackChannelTest.php +++ b/tests/Notifications/NotificationSlackChannelTest.php @@ -185,8 +185,8 @@ public function toSlack($notifiable) ->content('Attachment Content') ->fallback('Attachment Fallback') ->fields([ - 'Project' => 'Laravel', - ]) + 'Project' => 'Laravel', + ]) ->footer('Laravel') ->footerIcon('https://laravel.com/fake.png') ->markdown(['text']) @@ -212,8 +212,8 @@ public function toSlack($notifiable) ->content('Attachment Content') ->fallback('Attachment Fallback') ->fields([ - 'Project' => 'Laravel', - ]) + 'Project' => 'Laravel', + ]) ->footer('Laravel') ->footerIcon('https://laravel.com/fake.png') ->markdown(['text']) @@ -232,8 +232,8 @@ public function toSlack($notifiable) $attachment->title('Laravel', 'https://laravel.com') ->content('Attachment Content') ->fields([ - 'Project' => 'Laravel', - ]); + 'Project' => 'Laravel', + ]); }); } }