Passed
Push — master ( 90c23b...99e9c7 )
by Matthieu
07:35 queued 12s
created
src/Security/JWTSecurityHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Security;
4 4
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     private function findTenantJWT(Request $request): ?string
111 111
     {
112
-        if (!$this->devTenant || $this->environment  !== 'dev') {
112
+        if (!$this->devTenant || $this->environment !== 'dev') {
113 113
             return null;
114 114
         }
115 115
 
Please login to merge, or discard this patch.
src/Security/JWTSecurityHelperInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Security;
4 4
 
Please login to merge, or discard this patch.
Tests/Functional/AbstractWebTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Tests\Functional;
4 4
 
Please login to merge, or discard this patch.
Tests/Functional/app/src/Kernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Tests\Functional\App;
4 4
 
Please login to merge, or discard this patch.
Tests/Functional/app/src/Controller/ProtectedController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Tests\Functional\App\Controller;
4 4
 
Please login to merge, or discard this patch.
Tests/Functional/app/src/DataFixtures/TenantFixture.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Tests\Functional\App\DataFixtures;
4 4
 
Please login to merge, or discard this patch.
Tests/Functional/app/config/bundles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 return [
4 4
     Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Please login to merge, or discard this patch.
Tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 use AtlassianConnectBundle\Tests\Functional\App\Kernel;
4 4
 use Symfony\Bundle\FrameworkBundle\Console\Application;
Please login to merge, or discard this patch.
Tests/Functional/DescriptorControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Tests\Functional;
4 4
 
Please login to merge, or discard this patch.