Skip to content

Commit 9757894

Browse files
authored
Merge pull request #20 from laravel-notification-channels/analysis-8wN5nN
Apply fixes from StyleCI
2 parents 7c969ba + fe9eb3c commit 9757894

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/VapidKeysGenerateCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public function handle()
3535
if ($this->option('show')) {
3636
$this->line('<comment>VAPID_PUBLIC_KEY='.$keys['publicKey'].'</comment>');
3737
$this->line('<comment>VAPID_PRIVATE_KEY='.$keys['privateKey'].'</comment>');
38+
3839
return;
3940
}
4041

tests/VapidKeysGenerateCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function it_can_generate_and_set_vapid_keys()
3737

3838
$envContents = file_get_contents($envPath);
3939

40-
$this->assertRegExp("/^VAPID_PUBLIC_KEY=/m", $envContents);
41-
$this->assertRegExp("/^VAPID_PRIVATE_KEY=/m", $envContents);
40+
$this->assertRegExp('/^VAPID_PUBLIC_KEY=/m', $envContents);
41+
$this->assertRegExp('/^VAPID_PRIVATE_KEY=/m', $envContents);
4242
}
4343
}

0 commit comments

Comments
 (0)