diff --git a/generated/Exceptions/ApacheException.php b/generated/Exceptions/ApacheException.php index c5c8895e..5d69236f 100644 --- a/generated/Exceptions/ApacheException.php +++ b/generated/Exceptions/ApacheException.php @@ -1,10 +1,11 @@ assertSame(\strtotime('+1 day'), strtotime('+1 day')); + + set_error_handler(function () { + }); + try { + $this->expectException(DatetimeException::class); + strtotime('nonsense'); + } finally { + restore_error_handler(); + } } /**