@@ -55,6 +55,6 @@ |
||
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 |
@@ -78,6 +78,6 @@ |
||
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 |
@@ -65,6 +65,6 @@ |
||
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 |
@@ -6,7 +6,7 @@ |
||
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 |
@@ -5,7 +5,7 @@ |
||
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 |
@@ -6,7 +6,7 @@ |
||
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 |
@@ -6,7 +6,7 @@ |
||
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 |
@@ -6,7 +6,7 @@ |
||
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 |
@@ -6,7 +6,7 @@ |
||
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 |