Skip to content

Commit 75fa03e

Browse files
cretueusebiuStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 080269d commit 75fa03e

8 files changed

+12
-12
lines changed

src/VapidKeysGenerateCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace NotificationChannels\WebPush;
44

5-
use Illuminate\Support\Str;
6-
use Minishlink\WebPush\VAPID;
75
use Illuminate\Console\Command;
86
use Illuminate\Console\ConfirmableTrait;
7+
use Illuminate\Support\Str;
8+
use Minishlink\WebPush\VAPID;
99

1010
class VapidKeysGenerateCommand extends Command
1111
{

src/WebPushChannel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace NotificationChannels\WebPush;
44

5-
use Minishlink\WebPush\WebPush;
6-
use Minishlink\WebPush\Subscription;
75
use Illuminate\Notifications\Notification;
6+
use Minishlink\WebPush\Subscription;
7+
use Minishlink\WebPush\WebPush;
88

99
class WebPushChannel
1010
{

src/WebPushServiceProvider.php

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

33
namespace NotificationChannels\WebPush;
44

5+
use Illuminate\Support\ServiceProvider;
56
use Illuminate\Support\Str;
67
use Minishlink\WebPush\WebPush;
7-
use Illuminate\Support\ServiceProvider;
88

99
class WebPushServiceProvider extends ServiceProvider
1010
{

tests/ChannelTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
namespace NotificationChannels\WebPush\Test;
44

5-
use Mockery;
65
use GuzzleHttp\Psr7\Request;
76
use GuzzleHttp\Psr7\Response;
8-
use Minishlink\WebPush\WebPush;
9-
use Minishlink\WebPush\Subscription;
107
use Minishlink\WebPush\MessageSentReport;
8+
use Minishlink\WebPush\Subscription;
9+
use Minishlink\WebPush\WebPush;
10+
use Mockery;
1111
use NotificationChannels\WebPush\ReportHandler;
1212
use NotificationChannels\WebPush\WebPushChannel;
1313

tests/MessageTest.php

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

33
namespace NotificationChannels\WebPush\Test;
44

5-
use PHPUnit\Framework\TestCase;
65
use NotificationChannels\WebPush\WebPushMessage;
6+
use PHPUnit\Framework\TestCase;
77

88
class MessageTest extends TestCase
99
{

tests/TestCase.php

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

33
namespace NotificationChannels\WebPush\Test;
44

5-
use Illuminate\Support\Facades\Schema;
65
use Illuminate\Contracts\Console\Kernel;
76
use Illuminate\Database\Schema\Blueprint;
7+
use Illuminate\Support\Facades\Schema;
88
use Orchestra\Testbench\TestCase as Orchestra;
99

1010
abstract class TestCase extends Orchestra

tests/User.php

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

33
namespace NotificationChannels\WebPush\Test;
44

5+
use Illuminate\Foundation\Auth\User as Authenticatable;
56
use Illuminate\Notifications\Notifiable;
67
use NotificationChannels\WebPush\HasPushSubscriptions;
7-
use Illuminate\Foundation\Auth\User as Authenticatable;
88

99
class User extends Authenticatable
1010
{

tests/VapidKeysGenerateCommandTest.php

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

33
namespace NotificationChannels\WebPush\Test;
44

5-
use Illuminate\Support\Facades\File;
65
use Illuminate\Support\Facades\Artisan;
6+
use Illuminate\Support\Facades\File;
77

88
class VapidKeysGenerateCommandTest extends TestCase
99
{

0 commit comments

Comments
 (0)