Passed
Push — master ( d672e3...08f879 )
by Aimeos
04:07
created
src/Aimeos/Shop/Facades/Product.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@
 block discarded – undo
16 16
  */
17 17
 class Product extends \Illuminate\Support\Facades\Facade
18 18
 {
19
-    /**
20
-     * Returns a new product frontend controller object
21
-     *
22
-     * @return \Aimeos\Controller\Frontend\Product\Iface
23
-     */
24
-    protected static function getFacadeAccessor()
25
-    {
26
-        return \Aimeos\Controller\Frontend::create( app( 'aimeos.context' )->get(), 'product' );
27
-    }
19
+	/**
20
+	 * Returns a new product frontend controller object
21
+	 *
22
+	 * @return \Aimeos\Controller\Frontend\Product\Iface
23
+	 */
24
+	protected static function getFacadeAccessor()
25
+	{
26
+		return \Aimeos\Controller\Frontend::create( app( 'aimeos.context' )->get(), 'product' );
27
+	}
28 28
 }
Please login to merge, or discard this patch.
src/Aimeos/Shop/Facades/Service.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@
 block discarded – undo
16 16
  */
17 17
 class Service extends \Illuminate\Support\Facades\Facade
18 18
 {
19
-    /**
20
-     * Returns a new service frontend controller object
21
-     *
22
-     * @return \Aimeos\Controller\Frontend\Service\Iface
23
-     */
24
-    protected static function getFacadeAccessor()
25
-    {
26
-        return \Aimeos\Controller\Frontend::create( app( 'aimeos.context' )->get(), 'service' );
27
-    }
19
+	/**
20
+	 * Returns a new service frontend controller object
21
+	 *
22
+	 * @return \Aimeos\Controller\Frontend\Service\Iface
23
+	 */
24
+	protected static function getFacadeAccessor()
25
+	{
26
+		return \Aimeos\Controller\Frontend::create( app( 'aimeos.context' )->get(), 'service' );
27
+	}
28 28
 }
Please login to merge, or discard this patch.
src/Aimeos/Shop/Facades/Attribute.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@
 block discarded – undo
16 16
  */
17 17
 class Attribute extends \Illuminate\Support\Facades\Facade
18 18
 {
19
-    /**
20
-     * Returns a new attribute frontend controller object
21
-     *
22
-     * @return \Aimeos\Controller\Frontend\Attribute\Iface
23
-     */
24
-    protected static function getFacadeAccessor()
25
-    {
26
-        return \Aimeos\Controller\Frontend::create( app( 'aimeos.context' )->get(), 'attribute' );
27
-    }
19
+	/**
20
+	 * Returns a new attribute frontend controller object
21
+	 *
22
+	 * @return \Aimeos\Controller\Frontend\Attribute\Iface
23
+	 */
24
+	protected static function getFacadeAccessor()
25
+	{
26
+		return \Aimeos\Controller\Frontend::create( app( 'aimeos.context' )->get(), 'attribute' );
27
+	}
28 28
 }
Please login to merge, or discard this patch.
tests/AimeosTestAbstract.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
13 13
 		$app['config']->set('database.connections.mysql', [
14 14
 			'driver' => 'mysql',
15 15
 			'host' => env('DB_HOST', '127.0.0.1'),
16
-            'port' => env('DB_PORT', '3306'),
16
+			'port' => env('DB_PORT', '3306'),
17 17
 			'database' => env('DB_DATABASE', 'laravel'),
18 18
 			'username' => env('DB_USERNAME', 'aimeos'),
19 19
 			'password' => env('DB_PASSWORD', 'aimeos'),
20
-            'unix_socket' => env('DB_SOCKET', ''),
20
+			'unix_socket' => env('DB_SOCKET', ''),
21 21
 			'collation' => 'utf8_unicode_ci',
22 22
 		]);
23 23
 
Please login to merge, or discard this patch.