1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 04:34:03 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-08-19 12:07:15 +00:00 committed by StyleCI Bot
parent 7583f3645d
commit 7c2a855fdf

View file

@ -3,14 +3,13 @@
namespace Stancl\Tenancy\Tests; namespace Stancl\Tenancy\Tests;
use Illuminate\Bus\Queueable; use Illuminate\Bus\Queueable;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\Queue; use Illuminate\Support\Facades\Queue;
use Illuminate\Queue\SerializesModels; use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\Events\JobProcessing;
use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\Events\JobProcessed;
use Illuminate\Queue\Events\JobProcessing;
use Illuminate\Support\Facades\Event;
class QueueTest extends TestCase class QueueTest extends TestCase
{ {
@ -56,6 +55,6 @@ class TestJob implements ShouldQueue
*/ */
public function handle() public function handle()
{ {
logger(json_encode(\DB::table('users')->get())); logger(\json_encode(\DB::table('users')->get()));
} }
} }