Passed
Push — master ( 2a6aec...bbad0f )
by Aimeos
04:31
created
tests/Controller/BasketControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 		\Aimeos\MShop::cache( false );
13 13
 		\Aimeos\Controller\Frontend::cache( false );
14 14
 
15
-		(new \Symfony\Component\Filesystem\Filesystem())->remove( __DIR__ . '/../Fixtures/var/cache/sessions' );
15
+		( new \Symfony\Component\Filesystem\Filesystem() )->remove( __DIR__ . '/../Fixtures/var/cache/sessions' );
16 16
 	}
17 17
 
18 18
 
Please login to merge, or discard this patch.
tests/Fixtures/config/bundles.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 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
-    Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
7
-    Aimeos\ShopBundle\AimeosShopBundle::class => ['all' => true],
4
+	Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
5
+	Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
6
+	Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
7
+	Aimeos\ShopBundle\AimeosShopBundle::class => ['all' => true],
8 8
 ];
9 9
\ No newline at end of file
Please login to merge, or discard this patch.
src/AimeosShopBundle.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 class AimeosShopBundle extends Bundle
15 15
 {
16
-    public function getPath(): string
17
-    {
18
-        return dirname( __DIR__ );
19
-    }
16
+	public function getPath(): string
17
+	{
18
+		return dirname( __DIR__ );
19
+	}
20 20
 }
Please login to merge, or discard this patch.