@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | if (Crawler::isCrawler()) { |
32 | 32 | $userType = 'LaravelLogger::laravel-logger.userTypes.crawler,'; |
33 | 33 | if (is_null($description)) { |
34 | - $description = $userType. 'LaravelLogger::laravel-logger.verbTypes.crawled'/* .' '.Request::fullUrl() */; |
|
34 | + $description = $userType.'LaravelLogger::laravel-logger.verbTypes.crawled'/* .' '.Request::fullUrl() */; |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | private static function prepareErrorMessage($validatorErrors, $data) |
117 | 117 | { |
118 | 118 | $errors = json_decode(json_encode($validatorErrors, true)); |
119 | - array_walk($errors, function (&$value, $key) use ($data) { |
|
119 | + array_walk($errors, function(&$value, $key) use ($data) { |
|
120 | 120 | array_push($value, "Value: $data[$key]"); |
121 | 121 | }); |
122 | 122 |