Completed
Push — master ( 59e3b8...147766 )
by AJ
05:23
created
src/Controller/Component/ShopifyAPIComponent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
     /**
176 176
      * @param string $shopDomain
177 177
      * @param string $redirectUrl
178
-     * @return int
178
+     * @return string
179 179
      */
180 180
     public function getAuthorizeUrl($shopDomain, $redirectUrl)
181 181
     {
Please login to merge, or discard this patch.
src/Shell/ShopifyInstallShell.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,8 @@
 block discarded – undo
64 64
                 }
65 65
                 $scope = array_map('trim', $scope);
66 66
                 $scope = array_map('strtolower', $scope);
67
-                array_walk($scope, function (&$value) {
67
+                array_walk($scope, function (&$value)
68
+                {
68 69
                     $value = str_replace(" ", "_", $value);
69 70
                 });
70 71
 
Please login to merge, or discard this patch.