Completed
Branch testing (566e23)
by AJ
01:58
created
tests/Fixture/ShopsFixture.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,9 +70,9 @@
 block discarded – undo
70 70
         'force_ssl' => ['type' => 'integer', 'length' => 1, 'default' => 'NULL', 'null' => true],
71 71
         '_constraints' => [
72 72
             'PRIMARY' => ['type' => 'primary', 'columns' => ['id']]
73
-         ],
73
+            ],
74 74
         '_indexes' => [
75
-             'domain' => ['type' => 'index', 'columns' => ['myshopify_domain']]
75
+                'domain' => ['type' => 'index', 'columns' => ['myshopify_domain']]
76 76
         ]
77 77
     ];
78 78
       
Please login to merge, or discard this patch.
tests/TestCase/Controller/Component/ShopifyAPIComponentTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
 
27 27
 class ShopifyAPIComponentTest extends TestCase {
28 28
  
29
-     public $component = null;
30
-     public $controller = null;
31
-     public $fixtures = ['plugin.Multidimensional/Shopify.Shops', 'plugin.Multidimensional/Shopify.AccessTokens'];
29
+        public $component = null;
30
+        public $controller = null;
31
+        public $fixtures = ['plugin.Multidimensional/Shopify.Shops', 'plugin.Multidimensional/Shopify.AccessTokens'];
32 32
  
33
-     public function setUp() {
33
+        public function setUp() {
34 34
         parent::setUp();
35 35
         $request = new Request();
36 36
         $response = new Response();
Please login to merge, or discard this patch.
tests/TestCase/Controller/Component/ShopifyDatabaseComponentTest.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,13 +26,13 @@
 block discarded – undo
26 26
 
27 27
 class ShopifyDatabaseComponentTest extends TestCase {
28 28
  
29
-     public $component = null;
30
-     public $controller = null;
29
+        public $component = null;
30
+        public $controller = null;
31 31
  
32
-     public $fixtures = ['plugin.Multidimensional/Shopify.Shops',
33
-                         'plugin.Multidimensional/Shopify.AccessTokens'];
32
+        public $fixtures = ['plugin.Multidimensional/Shopify.Shops',
33
+                            'plugin.Multidimensional/Shopify.AccessTokens'];
34 34
  
35
-     public function setUp() {
35
+        public function setUp() {
36 36
         parent::setUp();
37 37
         $request = new Request();
38 38
         $response = new Response();
Please login to merge, or discard this patch.