Completed
Pull Request — master (#1218)
by
unknown
30s
created
src/SWP/Component/MultiTenancy/Exception/TenantNotFoundException.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
18 18
 
19 19
 class TenantNotFoundException extends NotFoundHttpException {
20
-  public function __construct(?string $message = '', \Throwable $previous = null, int $code = 0, array $headers = []) {
20
+    public function __construct(?string $message = '', \Throwable $previous = null, int $code = 0, array $headers = []) {
21 21
     parent::__construct(sprintf('Tenant for host "%s" could not be found! Please check tenants configuration.', $message), $previous, $code, $headers);
22
-  }
22
+    }
23 23
 }
Please login to merge, or discard this patch.