Passed
Push — master ( 3c3bea...36cb3b )
by Aimeos
17:26
created
config/bundles.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
5
-    Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
6
-    Aimeos\ShopBundle\AimeosShopBundle::class => ['all' => true],
4
+	Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
5
+	Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
6
+	Aimeos\ShopBundle\AimeosShopBundle::class => ['all' => true],
7 7
 ];
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
tests/Controller/JsonapiControllerTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@
 block discarded – undo
23 23
 		) );
24 24
 
25 25
 		$requestStack = self::getContainer()->get('request_stack');
26
-        try {
27
-            $requestStack->getSession();
28
-        } catch (SessionNotFoundException) {
29
-            $session = self::getContainer()->get('session.factory')->createSession();
30
-            $request = new Request();
31
-            $request->setSession($session);
32
-            $requestStack->push($request);
33
-        }
26
+		try {
27
+			$requestStack->getSession();
28
+		} catch (SessionNotFoundException) {
29
+			$session = self::getContainer()->get('session.factory')->createSession();
30
+			$request = new Request();
31
+			$request->setSession($session);
32
+			$requestStack->push($request);
33
+		}
34 34
 	}
35 35
 
36 36
 
Please login to merge, or discard this patch.
tests/Fixtures/config/bundles.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
5
-    Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
6
-    Aimeos\ShopBundle\AimeosShopBundle::class => ['all' => true],
4
+	Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
5
+	Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
6
+	Aimeos\ShopBundle\AimeosShopBundle::class => ['all' => true],
7 7
 ];
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
src/Entity/User.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -158,11 +158,11 @@
 block discarded – undo
158 158
 	/**
159 159
 	 * @inheritDoc
160 160
 	 */
161
-    public function setPassword(string $password): self
162
-    {
163
-        $this->password = $password;
164
-        return $this;
165
-    }
161
+	public function setPassword(string $password): self
162
+	{
163
+		$this->password = $password;
164
+		return $this;
165
+	}
166 166
 
167 167
 
168 168
 	/**
Please login to merge, or discard this patch.