Passed
Branch develop (84afed)
by Paulius
04:34 queued 02:36
created
tests/ClientTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -198,19 +198,19 @@
 block discarded – undo
198 198
         $signingToken = 'MyToken123';
199 199
         $accessToken = 'MyAccessToken';
200 200
         $this->assertSame(
201
-            'https://gateway-sandbox.dokobit.com/open/'.$signingToken,
201
+            'https://gateway-sandbox.dokobit.com/open/' . $signingToken,
202 202
             $client->getOpenUrl($signingToken)
203 203
         );
204 204
         $this->assertSame(
205
-            'https://gateway-sandbox.dokobit.com/signing/'.$signingToken.'?access_token='.$accessToken,
205
+            'https://gateway-sandbox.dokobit.com/signing/' . $signingToken . '?access_token=' . $accessToken,
206 206
             $client->getSigningUrl($signingToken, $accessToken)
207 207
         );
208 208
         $this->assertSame(
209
-            'https://gateway-sandbox.dokobit.com/signing/batch/'.$signingToken,
209
+            'https://gateway-sandbox.dokobit.com/signing/batch/' . $signingToken,
210 210
             $client->getBatchSigningUrl($signingToken)
211 211
         );
212 212
         $this->assertSame(
213
-            'https://gateway-sandbox.dokobit.com/signing/sequence/'.$signingToken,
213
+            'https://gateway-sandbox.dokobit.com/signing/sequence/' . $signingToken,
214 214
             $client->getSequenceSigningUrl($signingToken)
215 215
         );
216 216
     }
Please login to merge, or discard this patch.
tests/Integration/File/CheckTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public function testStatusOk()
11 11
     {
12
-        $file = __DIR__.'/../../data/signed.pdf';
12
+        $file = __DIR__ . '/../../data/signed.pdf';
13 13
 
14 14
         $type = 'pdf';
15 15
 
Please login to merge, or discard this patch.
tests/Query/Signing/PrepareTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 
39 39
     public function testGetAction()
40 40
     {
41
-        $this->assertSame('signing/'.self::TOKEN.'/prepare', $this->query->getAction());
41
+        $this->assertSame('signing/' . self::TOKEN . '/prepare', $this->query->getAction());
42 42
     }
43 43
 
44 44
     public function testGetMethod()
Please login to merge, or discard this patch.
tests/Query/Signing/DeleteTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     public function testGetAction()
32 32
     {
33
-        $this->assertSame('signing/'.self::TOKEN.'/delete', $this->query->getAction());
33
+        $this->assertSame('signing/' . self::TOKEN . '/delete', $this->query->getAction());
34 34
     }
35 35
 
36 36
     public function testGetMethod()
Please login to merge, or discard this patch.
tests/Query/Signing/SealTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 
85 85
     public function testGetAction()
86 86
     {
87
-        $this->assertSame('signing/'.self::TOKEN.'/seal', $this->queryMinimal->getAction());
87
+        $this->assertSame('signing/' . self::TOKEN . '/seal', $this->queryMinimal->getAction());
88 88
     }
89 89
 
90 90
     public function testGetMethod()
Please login to merge, or discard this patch.
tests/Query/Signing/ArchiveTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
 
49 49
     public function testGetAction()
50 50
     {
51
-        $this->assertSame('signing/'.self::TOKEN.'/archive', $this->query->getAction());
51
+        $this->assertSame('signing/' . self::TOKEN . '/archive', $this->query->getAction());
52 52
     }
53 53
 
54 54
     public function testGetMethod()
Please login to merge, or discard this patch.
tests/Query/Signing/RemoveSignerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 
43 43
     public function testGetAction()
44 44
     {
45
-        $this->assertSame('signing/'.self::TOKEN.'/removesigner', $this->query->getAction());
45
+        $this->assertSame('signing/' . self::TOKEN . '/removesigner', $this->query->getAction());
46 46
     }
47 47
 
48 48
     public function testGetMethod()
Please login to merge, or discard this patch.
tests/Query/Signing/AddSignerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
     public function testGetAction()
60 60
     {
61
-        $this->assertSame('signing/'.self::TOKEN.'/addsigner', $this->query->getAction());
61
+        $this->assertSame('signing/' . self::TOKEN . '/addsigner', $this->query->getAction());
62 62
     }
63 63
 
64 64
     public function testGetMethod()
Please login to merge, or discard this patch.
tests/Query/Signing/SignTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 
39 39
     public function testGetAction()
40 40
     {
41
-        $this->assertSame('signing/'.self::TOKEN.'/sign', $this->query->getAction());
41
+        $this->assertSame('signing/' . self::TOKEN . '/sign', $this->query->getAction());
42 42
     }
43 43
 
44 44
     public function testGetMethod()
Please login to merge, or discard this patch.