File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ public function getTable()
3737 const FREQUENCY_IN_HOURS = [
3838 'single ' => PHP_INT_MAX ,
3939 'hourly ' => 1 ,
40- 'daily ' => self ::HOURS_IN_DAY ,
40+ 'daily ' => self ::HOURS_IN_DAY ,
4141 'weekly ' => self ::HOURS_IN_WEEK ,
4242 ];
4343
4444 const DELAY_OPTIONS = [
45- '24 ' => 'Days ' ,
45+ '24 ' => 'Days ' ,
4646 '168 ' => 'Weeks ' ,
4747 ];
4848
@@ -169,7 +169,7 @@ public function weeks(int $number)
169169
170170 public function event (string $ event )
171171 {
172- if (!is_a (MailatorEvent::class, $ event )) {
172+ if (! is_a (MailatorEvent::class, $ event )) {
173173 InstanceException::throw ($ event );
174174 }
175175
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ protected function getEnvironmentSetUp($app)
3434 $ app ['config ' ]->set ('database.default ' , 'sqlite ' );
3535
3636 $ app ['config ' ]->set ('database.connections.sqlite ' , [
37- 'driver ' => 'sqlite ' ,
37+ 'driver ' => 'sqlite ' ,
3838 'database ' => ':memory: ' ,
39- 'prefix ' => '' ,
39+ 'prefix ' => '' ,
4040 ]);
4141
4242 include_once __DIR__ .'/../database/migrations/create_mailator_tables.php.stub ' ;
You can’t perform that action at this time.
0 commit comments