Completed
Pull Request — develop (#17)
by Christoffer
04:40 queued 02:12
created
tests/_support/UnitTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     use _generated\UnitTesterActions;
22 22
 
23
-   /**
24
-    * Define custom actions here
25
-    */
23
+    /**
24
+     * Define custom actions here
25
+     */
26 26
 }
Please login to merge, or discard this patch.
tests/unit/OAuth2ServiceTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,8 +37,8 @@
 block discarded – undo
37 37
         $this->specify('verify service issueAccessToken', function () {
38 38
             $authorizationServer = $this->createAuthorizationServer();
39 39
             $authorizationServer->expects($this->once())
40
-               ->method('issueAccessToken')
41
-               ->will($this->returnValue(self::$token));
40
+                ->method('issueAccessToken')
41
+                ->will($this->returnValue(self::$token));
42 42
 
43 43
             $service = new OAuth2Service($authorizationServer, $this->createResourceServer());
44 44
             verify($service->issueAccessToken())->equals(self::$token);
Please login to merge, or discard this patch.