Remove all "@phpstan-ignore-line" entries.

This commit is contained in:
James Cole
2026-03-06 07:39:12 +01:00
parent 705138aa27
commit 12f19c6c34
78 changed files with 254 additions and 157 deletions

View File

@@ -54,7 +54,7 @@ class IsValidDateRange implements ValidationRule
try {
$left = Carbon::parse($value);
$right = Carbon::parse($otherValue);
} catch (InvalidDateException $e) { // @phpstan-ignore-line
} catch (InvalidDateException $e) {
Log::error(sprintf('"%s" or "%s" is not a valid date or time: %s', $value, $otherValue, $e->getMessage()));
$fail('validation.date_or_time')->translate();