Test Failed
Push — master ( 24ce30...cccfc3 )
by Lyal
02:19
created
tests/unit/NationalCriminalSearchTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,6 +55,6 @@
 block discarded – undo
55 55
 
56 56
     protected function getNationalCriminalSearch($values = NULL)
57 57
     {
58
-        return new NationalCriminalSearch($values,$this->getClient());
58
+        return new NationalCriminalSearch($values, $this->getClient());
59 59
     }
60 60
 }
61 61
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/CountyCriminalSearchTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,6 +78,6 @@
 block discarded – undo
78 78
      */
79 79
     protected function getCountyCriminalSearch($values = NULL)
80 80
     {
81
-        return new CountyCriminalSearch($values,$this->getClient());
81
+        return new CountyCriminalSearch($values, $this->getClient());
82 82
     }
83 83
 }
84 84
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/SexOffenderSearchTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,6 +65,6 @@
 block discarded – undo
65 65
 
66 66
     protected function getSexOffenderSearch($values = NULL)
67 67
     {
68
-        return new SexOffenderSearch($values,$this->getClient());
68
+        return new SexOffenderSearch($values, $this->getClient());
69 69
     }
70 70
 }
71 71
\ No newline at end of file
Please login to merge, or discard this patch.
src/Exceptions/UnhandledRequestError.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public function __construct($code, $response)
8 8
     {
9
-        $message = 'The request failed with the error: ' . $code . '.  Response: ' . $response;
9
+        $message = 'The request failed with the error: '.$code.'.  Response: '.$response;
10 10
         parent::__construct($message);
11 11
     }
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.
src/Exceptions/UnknownResourceException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 {
6 6
     public function __construct($name)
7 7
     {
8
-        $message = 'Unknown checkr resource: ' . $name;
8
+        $message = 'Unknown checkr resource: '.$name;
9 9
         parent::__construct($message);
10 10
     }
11 11
 
Please login to merge, or discard this patch.
src/Exceptions/IdMissing.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public function __construct($object)
8 8
     {
9
-        $message = 'Id must be set to save an entity. Entity values: ' . json_encode($object->getAttributes());
9
+        $message = 'Id must be set to save an entity. Entity values: '.json_encode($object->getAttributes());
10 10
         parent::__construct($message);
11 11
     }
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.
src/Exceptions/Server/InternalServerError.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public function __construct($response)
8 8
     {
9
-        $message = 'Something went wrong with the Checkr API. Response: ' . $response;
9
+        $message = 'Something went wrong with the Checkr API. Response: '.$response;
10 10
         parent::__construct($message);
11 11
     }
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.
src/Exceptions/InvalidAttributeException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public function __construct($class, $key)
8 8
     {
9
-        $message = 'Unknown attribute on resource ' . $class . ': ' . $key;
9
+        $message = 'Unknown attribute on resource '.$class.': '.$key;
10 10
         parent::__construct($message);
11 11
     }
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.
src/Exceptions/Client/NotFound.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public function __construct($response)
8 8
     {
9
-        $message = 'The requested resource could not be found. Response: ' . $response;
9
+        $message = 'The requested resource could not be found. Response: '.$response;
10 10
         parent::__construct($message);
11 11
     }
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.