refactor: Be consistent with formatting

This commit is contained in:
Oliver Davies 2021-08-26 22:51:59 +01:00
parent 6c10410a20
commit fd11dabc2b

View file

@ -28,7 +28,9 @@ final class TalkExtensionTest extends TestCase
[ [
'title' => 'Building static sites with Sculpin', 'title' => 'Building static sites with Sculpin',
'events' => [ 'events' => [
['date' => Carbon::today()->subDay()->format('Y-m-d')], [
'date' => Carbon::today()->subDay()->format('Y-m-d'),
],
] ]
], ],
]; ];
@ -43,8 +45,12 @@ final class TalkExtensionTest extends TestCase
[ [
'title' => 'Building static sites with Sculpin', 'title' => 'Building static sites with Sculpin',
'events' => [ 'events' => [
['date' => Carbon::today()->subDay()->format('Y-m-d')], [
['date' => Carbon::today()->subDay()->format('Y-m-d')], 'date' => Carbon::today()->subDay()->format('Y-m-d'),
],
[
'date' => Carbon::today()->subDay()->format('Y-m-d'),
],
] ]
], ],
]; ];
@ -59,13 +65,17 @@ final class TalkExtensionTest extends TestCase
[ [
'title' => 'Building static sites with Sculpin', 'title' => 'Building static sites with Sculpin',
'events' => [ 'events' => [
['date' => Carbon::today()->subDay()->format('Y-m-d')], [
'date' => Carbon::today()->subDay()->format('Y-m-d'),
],
] ]
], ],
[ [
'title' => 'TDD - Test Driven Drupal', 'title' => 'TDD - Test Driven Drupal',
'events' => [ 'events' => [
['date' => Carbon::today()->subDay()->format('Y-m-d')], [
'date' => Carbon::today()->subDay()->format('Y-m-d'),
],
] ]
], ],
]; ];
@ -81,9 +91,7 @@ final class TalkExtensionTest extends TestCase
'title' => 'Building static sites with Sculpin', 'title' => 'Building static sites with Sculpin',
'events' => [ 'events' => [
[ [
'date' => Carbon::today() 'date' => Carbon::today()->subDay()->format('Y-m-d'),
->subDay()
->format('Y-m-d'),
], ],
], ],
], ],
@ -91,9 +99,7 @@ final class TalkExtensionTest extends TestCase
'title' => 'TDD - Test Driven Drupal', 'title' => 'TDD - Test Driven Drupal',
'events' => [ 'events' => [
[ [
'date' => Carbon::today() 'date' => Carbon::today()->addDay()->format('Y-m-d'),
->addDay()
->format('Y-m-d'),
], ],
], ],
], ],