Skip to content

Commit c70b5ff

Browse files
duncanmccleangithub-actions[bot]
authored andcommitted
Fix styling
1 parent 7061312 commit c70b5ff

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Entries/EntryModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace Statamic\Eloquent\Entries;
44

5-
use Illuminate\Support\Arr;
65
use Illuminate\Database\Eloquent\Casts\Attribute;
6+
use Illuminate\Support\Arr;
77
use Illuminate\Support\Carbon;
88
use Statamic\Eloquent\Database\BaseModel;
99

tests/Entries/EntryModelTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function it_sets_utc_date_from_string()
5555
config()->set('app.timezone', 'America/New_York'); // -05:00
5656
date_default_timezone_set('America/New_York');
5757

58-
$model = new EntryModel();
58+
$model = new EntryModel;
5959
$model->id = 1;
6060
$model->site = 'en';
6161
$model->published = true;
@@ -76,7 +76,7 @@ public function it_sets_utc_date_from_carbon()
7676
config()->set('app.timezone', 'America/New_York'); // -05:00
7777
date_default_timezone_set('America/New_York');
7878

79-
$model = new EntryModel();
79+
$model = new EntryModel;
8080
$model->id = 1;
8181
$model->site = 'en';
8282
$model->published = true;
@@ -97,7 +97,7 @@ public function it_sets_non_utc_date_from_carbon()
9797
config()->set('app.timezone', 'America/New_York'); // -05:00
9898
date_default_timezone_set('America/New_York');
9999

100-
$model = new EntryModel();
100+
$model = new EntryModel;
101101
$model->id = 1;
102102
$model->site = 'en';
103103
$model->published = true;

0 commit comments

Comments
 (0)