Completed
Push — master ( 77d80e...7d4a42 )
by Desjardins
02:44
created
tests/VoteCheckerTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         $vote->checkCode('alreadyused');
28 28
     }
29 29
     
30
-     public function testCheckCodeInvalidUsedThrowException()
30
+        public function testCheckCodeInvalidUsedThrowException()
31 31
     {
32 32
         $this->expectException(ApiException::class);
33 33
         $this->expectExceptionMessage('Code invalidcode isn\'t valid.');
Please login to merge, or discard this patch.
src/VoteChecker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * @return string
58 58
      */
59 59
     protected function buildURI($code) {
60
-        return self::HOST_API . '?id_serv=' . $this->serverId . '&code=' . $code;
60
+        return self::HOST_API.'?id_serv='.$this->serverId.'&code='.$code;
61 61
     }
62 62
 
63 63
     /**
Please login to merge, or discard this patch.