@@ -6,7 +6,6 @@ |
||
6 | 6 | use Isign\Sign\Sc; |
7 | 7 | use Isign\Sign\ScPrepare; |
8 | 8 | use Isign\Sign\ScPrepareResult; |
9 | -use Isign\StatusResultInterface; |
|
10 | 9 | |
11 | 10 | class ScSignTest extends TestCase |
12 | 11 | { |
@@ -27,11 +27,11 @@ |
||
27 | 27 | public function getFields() |
28 | 28 | { |
29 | 29 | return [ |
30 | - 'status', |
|
31 | - 'algorithm', |
|
32 | - 'token', |
|
33 | - 'dtbs_hash', |
|
34 | - 'dtbs', |
|
30 | + 'status', |
|
31 | + 'algorithm', |
|
32 | + 'token', |
|
33 | + 'dtbs_hash', |
|
34 | + 'dtbs', |
|
35 | 35 | ]; |
36 | 36 | } |
37 | 37 |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | public function testPdfGuess() |
9 | 9 | { |
10 | 10 | $obj = new DocumentTypeGuesser(); |
11 | - $type = $obj->guess(__DIR__ . '/data/document.pdf'); |
|
11 | + $type = $obj->guess(__DIR__.'/data/document.pdf'); |
|
12 | 12 | |
13 | 13 | $this->assertSame('pdf', $type); |
14 | 14 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | { |
21 | 21 | $obj = new DocumentTypeGuesser(); |
22 | 22 | $obj->setGuessers([]); |
23 | - $type = $obj->guess(__DIR__ . '/data/document.pdf'); |
|
23 | + $type = $obj->guess(__DIR__.'/data/document.pdf'); |
|
24 | 24 | |
25 | 25 | $this->assertSame(null, $type); |
26 | 26 | } |