From fcbfe8fb261570f3e1b47719998379c6b5399455 Mon Sep 17 00:00:00 2001 From: stancl Date: Sun, 28 Jun 2020 12:31:26 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Bootstrappers/QueueTenancyBootstrapper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bootstrappers/QueueTenancyBootstrapper.php b/src/Bootstrappers/QueueTenancyBootstrapper.php index 42d2e0e2..6fefaad2 100644 --- a/src/Bootstrappers/QueueTenancyBootstrapper.php +++ b/src/Bootstrappers/QueueTenancyBootstrapper.php @@ -45,7 +45,7 @@ class QueueTenancyBootstrapper implements TenancyBootstrapper $tenantId = $event->job->payload()['tenant_id'] ?? null; // The job is not tenant-aware - if (!$tenantId) { + if (! $tenantId) { return; } @@ -64,7 +64,7 @@ class QueueTenancyBootstrapper implements TenancyBootstrapper { $bootstrapper = &$this; - if (!$this->queue instanceof QueueFake) { + if (! $this->queue instanceof QueueFake) { $this->queue->createPayloadUsing(function ($connection) use (&$bootstrapper) { return $bootstrapper->getPayload($connection); });