Completed
Push — master ( b1e32b...8957b8 )
by AJ
09:43 queued 07:43
created
src/Controller/Component/ShopifyDatabaseComponent.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,7 +113,8 @@  discard block
 block discarded – undo
113 113
         $query = $query->contain(['Shops']);
114 114
         $query = $query->where(['api_key' => $apiKey, 'token' => $accessToken]);
115 115
         $query = $query->where(
116
-            function ($exp, $q) {
116
+            function ($exp, $q)
117
+            {
117 118
                 return $exp->isNull('expired_at');
118 119
             }
119 120
         );
@@ -133,7 +134,8 @@  discard block
 block discarded – undo
133 134
         $query = $query->contain(['Shops']);
134 135
         $query = $query->where(['api_key' => $apiKey, 'Shops.myshopify_domain' => $shopDomain]);
135 136
         $query = $query->where(
136
-            function ($exp, $q) {
137
+            function ($exp, $q)
138
+            {
137 139
                 return $exp->isNull('expired_at');
138 140
             }
139 141
         );
Please login to merge, or discard this patch.
src/Shell/ShopifyInstallShell.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,8 @@
 block discarded – undo
66 66
                 $scope = array_map('strtolower', $scope);
67 67
                 array_walk(
68 68
                     $scope,
69
-                    function (&$value) {
69
+                    function (&$value)
70
+                    {
70 71
                         $value = str_replace(" ", "_", $value);
71 72
                     }
72 73
                 );
Please login to merge, or discard this patch.
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -51,24 +51,24 @@
 block discarded – undo
51 51
 
52 52
             $scopeArray = 
53 53
                 ['read_content',
54
-                 'write_content',
55
-                 'read_themes',
56
-                 'write_themes',
57
-                 'read_products',
58
-                 'write_products',
59
-                 'read_customers',
60
-                 'write_customers',
61
-                 'read_orders',
62
-                 'write_orders',
63
-                 'read_script_tags',
64
-                 'write_script_tags',
65
-                 'read_fulfillments',
66
-                 'write_fulfillments',
67
-                 'read_shipping',
68
-                 'write_shipping',
69
-                 'read_analytics',
70
-                 'read_users',
71
-                 'write_users'];
54
+                    'write_content',
55
+                    'read_themes',
56
+                    'write_themes',
57
+                    'read_products',
58
+                    'write_products',
59
+                    'read_customers',
60
+                    'write_customers',
61
+                    'read_orders',
62
+                    'write_orders',
63
+                    'read_script_tags',
64
+                    'write_script_tags',
65
+                    'read_fulfillments',
66
+                    'write_fulfillments',
67
+                    'read_shipping',
68
+                    'write_shipping',
69
+                    'read_analytics',
70
+                    'read_users',
71
+                    'write_users'];
72 72
 
73 73
             $this->out('Enter your application\'s scope here.', 2);
74 74
             $this->out('Valid scope options:', 2);
Please login to merge, or discard this patch.