Skip to content

Commit 20b7f4d

Browse files
binarykactions-user
authored andcommitted
Fix styling
1 parent c4575ed commit 20b7f4d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Models/MailatorSchedule.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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';

0 commit comments

Comments
 (0)