Completed
Branch testing (566e23)
by AJ
01:58
created
tests/Fixture/ShopsFixture.php 2 patches
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.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,7 @@
 block discarded – undo
17 17
 
18 18
 use Cake\TestSuite\Fixture\TestFixture;
19 19
 
20
-class ShopsFixture extends TestFixture
21
-{
20
+class ShopsFixture extends TestFixture {
22 21
 
23 22
     public $fields = [
24 23
         'id' => ['type' => 'integer', 'length' => 11],
Please login to merge, or discard this patch.
tests/Fixture/AccessTokensFixture.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,7 @@
 block discarded – undo
17 17
 
18 18
 use Cake\TestSuite\Fixture\TestFixture;
19 19
 
20
-class AccessTokensFixture extends TestFixture
21
-{
20
+class AccessTokensFixture extends TestFixture {
22 21
  
23 22
     public $fields = [
24 23
         'id' => ['type' => 'integer', 'length' => 10, 'null' => false],
Please login to merge, or discard this patch.