Completed
Push — master ( dd21cf...b0fced )
by AJ
07:09
created
src/Auth/ShopifyAuthAuthenticate.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     /**
74 74
      * @param Request  $request
75 75
      * @param Response $response
76
-     * @return null|Response
76
+     * @return null|string
77 77
      */
78 78
     public function unauthenticated(Request $request, Response $response)
79 79
     {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     }
185 185
 
186 186
     /**
187
-     * @return Router
187
+     * @return string
188 188
      */
189 189
     private function _generateLoginUrl()
190 190
     {
Please login to merge, or discard this patch.
tests/TestCase/Controller/Component/ShopifyAPIComponentTest.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -186,18 +186,18 @@
 block discarded – undo
186 186
         $this->assertTrue($return);
187 187
     }
188 188
 	
189
-	public function testValidateHMAC()
190
-	{
191
-		$return = $this->component->validateHMAC();
192
-		$this->assertFalse($return);
189
+    public function testValidateHMAC()
190
+    {
191
+        $return = $this->component->validateHMAC();
192
+        $this->assertFalse($return);
193 193
 		
194
-		$return = $this->component->validateHMAC([]);
195
-		$this->assertFalse($return);
194
+        $return = $this->component->validateHMAC([]);
195
+        $this->assertFalse($return);
196 196
 		
197
-		$return = $this->component->validateHMAC(['hmac' => null]);
198
-		$this->assertFalse($return);
197
+        $return = $this->component->validateHMAC(['hmac' => null]);
198
+        $this->assertFalse($return);
199 199
 		
200
-		$return = $this->component->validateHMAC(['hmac' => "string"]);
201
-		$this->assertFalse($return);
202
-	}
200
+        $return = $this->component->validateHMAC(['hmac' => "string"]);
201
+        $this->assertFalse($return);
202
+    }
203 203
 }
Please login to merge, or discard this patch.