File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33namespace Statamic \Eloquent \Entries ;
44
5- use Illuminate \Support \Arr ;
65use Illuminate \Database \Eloquent \Casts \Attribute ;
6+ use Illuminate \Support \Arr ;
77use Illuminate \Support \Carbon ;
88use Statamic \Eloquent \Database \BaseModel ;
99
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments