Test Failed
Push — master ( 3167ce...8fca71 )
by Lyal
06:02
created
tests/unit/EducationVerificationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,6 +82,6 @@
 block discarded – undo
82 82
 
83 83
     protected function getEducationVerification($values = NULL)
84 84
     {
85
-        return new EducationVerification($values,$this->getClient());
85
+        return new EducationVerification($values, $this->getClient());
86 86
     }
87 87
 }
88 88
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/VerificationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
 
41 41
     protected function getVerification($values = NULL)
42 42
     {
43
-        return new Verification($values,$this->getClient());
43
+        return new Verification($values, $this->getClient());
44 44
     }
45 45
 }
46 46
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/DocumentTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,13 +56,13 @@
 block discarded – undo
56 56
     {
57 57
         $responses = [new Response(200, [], $this->jsonString)];
58 58
         $document = $this->getDocument(NULL, $responses);
59
-        $response = $document->upload('drivers_license', __DIR__ . '/DocumentTest.php', '3333c07dd9a10c3985ae432a');
59
+        $response = $document->upload('drivers_license', __DIR__.'/DocumentTest.php', '3333c07dd9a10c3985ae432a');
60 60
 
61 61
         $this->assertEquals('4722c07dd9a10c3985ae432a', $response->id);
62 62
     }
63 63
 
64 64
     protected function getDocument($values = NULL, $responses = [])
65 65
     {
66
-        return new Document($values,$this->getClient($responses));
66
+        return new Document($values, $this->getClient($responses));
67 67
     }
68 68
 }
Please login to merge, or discard this patch.
tests/unit/StateCriminalSearchTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,6 +76,6 @@
 block discarded – undo
76 76
 
77 77
     protected function getStateCriminalSearch($values = NULL)
78 78
     {
79
-        return new StateCriminalSearch($values,$this->getClient());
79
+        return new StateCriminalSearch($values, $this->getClient());
80 80
     }
81 81
 }
82 82
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/HelpersTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
         $screeningName = checkrEntityClassName('ssn_trace');
25 25
         $resourceName = checkrEntityClassName('adverse_actions');
26 26
 
27
-        $this->assertSame('\\' . get_class($screening), $screeningName);
28
-        $this->assertSame('\\' . get_class($resource), $resourceName);
27
+        $this->assertSame('\\'.get_class($screening), $screeningName);
28
+        $this->assertSame('\\'.get_class($resource), $resourceName);
29 29
     }
30 30
 
31 31
     public function testResourceOrScreeningInvalidClassName()
Please login to merge, or discard this patch.
tests/unit/AdverseActionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,6 +54,6 @@
 block discarded – undo
54 54
 
55 55
     protected function getAdverseAction($values = NULL)
56 56
     {
57
-        return new AdverseAction($values,$this->getClient());
57
+        return new AdverseAction($values, $this->getClient());
58 58
     }
59 59
 }
Please login to merge, or discard this patch.
tests/unit/PackageTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,6 +56,6 @@
 block discarded – undo
56 56
 
57 57
     protected function getPackage($values = NULL)
58 58
     {
59
-        return new Package($values,$this->getClient());
59
+        return new Package($values, $this->getClient());
60 60
     }
61 61
 }
62 62
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/SubscriptionTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     {
16 16
         $subscription = $this->getSubscription();
17 17
         $subscription->id = 'e44aa283528e6fde7d542194';
18
-        $this->assertSame('e44aa283528e6fde7d542194',$subscription->id);
18
+        $this->assertSame('e44aa283528e6fde7d542194', $subscription->id);
19 19
     }
20 20
 
21 21
     public function testFields()
@@ -44,6 +44,6 @@  discard block
 block discarded – undo
44 44
 
45 45
     protected function getSubscription($values = NULL)
46 46
     {
47
-        return new Subscription($values,$this->getClient());
47
+        return new Subscription($values, $this->getClient());
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/InvitationTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $invitation = $this->getInvitation();
23 23
         $invitation->id = 'e44aa283528e6fde7d542194';
24
-        $this->assertSame('e44aa283528e6fde7d542194',$invitation->id);
24
+        $this->assertSame('e44aa283528e6fde7d542194', $invitation->id);
25 25
     }
26 26
 
27 27
     public function testFields()
@@ -50,6 +50,6 @@  discard block
 block discarded – undo
50 50
 
51 51
     protected function getInvitation($values = NULL)
52 52
     {
53
-        return new Invitation($values,$this->getClient());
53
+        return new Invitation($values, $this->getClient());
54 54
     }
55 55
 }
56 56
\ No newline at end of file
Please login to merge, or discard this patch.