diff --git a/src/Illuminate/Notifications/Channels/DatabaseChannel.php b/src/Illuminate/Notifications/Channels/DatabaseChannel.php index a740b7b6d208..0772feead2bc 100644 --- a/src/Illuminate/Notifications/Channels/DatabaseChannel.php +++ b/src/Illuminate/Notifications/Channels/DatabaseChannel.php @@ -2,8 +2,8 @@ namespace Illuminate\Notifications\Channels; -use Illuminate\Notifications\Notification; use RuntimeException; +use Illuminate\Notifications\Notification; class DatabaseChannel { diff --git a/tests/Notifications/NotificationDatabaseChannelTest.php b/tests/Notifications/NotificationDatabaseChannelTest.php index 1fd341874f2a..bdbbb5508510 100644 --- a/tests/Notifications/NotificationDatabaseChannelTest.php +++ b/tests/Notifications/NotificationDatabaseChannelTest.php @@ -2,11 +2,11 @@ namespace Illuminate\Tests\Notifications; -use Illuminate\Notifications\Channels\DatabaseChannel; -use Illuminate\Notifications\Messages\DatabaseMessage; -use Illuminate\Notifications\Notification; use Mockery; use PHPUnit\Framework\TestCase; +use Illuminate\Notifications\Notification; +use Illuminate\Notifications\Channels\DatabaseChannel; +use Illuminate\Notifications\Messages\DatabaseMessage; class NotificationDatabaseChannelTest extends TestCase {