From 61796552b1bc75aab3ab8d3562ee6f4db2e2d27b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geoffrey=20=E2=80=9CFrogeye=E2=80=9D=20Preud=27homme?= Date: Sun, 22 Sep 2019 23:28:19 +0200 Subject: [PATCH] Fixed definition of Request->nullableNlString Typo introduced in f8cb5ca21c9a38666134966c59626c82be4a4eaf --- app/Http/Requests/Request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Requests/Request.php b/app/Http/Requests/Request.php index 627e3b1e3c..d7f76c594b 100644 --- a/app/Http/Requests/Request.php +++ b/app/Http/Requests/Request.php @@ -244,7 +244,7 @@ class Request extends FormRequest * * @return string */ - public function nullableNlString(string $field): string + public function nullableNlString(string $field): ?string { if (!$this->has($field)) { return null;