@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | |
49 | 49 | if (is_numeric($resource->get($key)) && is_string($resource->get($key))) { |
50 | 50 | throw new \RuntimeException( |
51 | - 'Property `'.$key.'` must be an integer!' |
|
51 | + 'Property `' . $key . '` must be an integer!' |
|
52 | 52 | ); |
53 | 53 | } |
54 | 54 | |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | if (key($rule) == 'custom-validator') { |
77 | 77 | if ('email' != current($rule)) { |
78 | 78 | throw new \RuntimeException( |
79 | - 'Oops! `'.key($rule).'` custom validator is not available. Only email are.' |
|
79 | + 'Oops! `' . key($rule) . '` custom validator is not available. Only email are.' |
|
80 | 80 | ); |
81 | 81 | } |
82 | 82 |