You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** @test */
public function it_fails_with_bad_message(): void
{
\Safe\DateTime::createFromFormat('U',$this->generate_error());
}
public function generate_error()
{
@include "non_exist_file.php"; //some soppred error
return (new \DateTime())->getTimestamp().'x';
}
Produce this otput
✘ It fails with bad message 20 ms
┐
├ Safe\Exceptions\DatetimeException: include(): Failed opening 'non_exist_file.php' for inclusion (include_path='.:/usr/local/Cellar/php/7.4.7/share/php/pear')
│
The probles it's with code
class DatetimeException extends \ErrorException implements SafeExceptionInterface
{
public static function createFromPhpError(): self
{
$error = error_get_last(); <- keep the last error (from include)
return new self($error['message'] ?? 'An error occured', 0, $error['type'] ?? 1);
}
}
It's possible resolve with this
class DatetimeException extends \ErrorException implements SafeExceptionInterface
{
public static function createFromPhpError(): self
{
$error = \DateTime::getLastErrors();
return new self($error['message'] ?? 'An error occured', 0, $error['type'] ?? 1);
}
}
I think :-)
The text was updated successfully, but these errors were encountered:
BruceGitHub
changed the title
Maybe e Bug: False error message with sopressed error @on createFromFormat
Maybe e Bug: False error message with sopressed error @ on createFromFormat
Sep 8, 2020
BruceGitHub
changed the title
Maybe e Bug: False error message with sopressed error @ on createFromFormat
Bug: False error message with sopressed error @ on createFromFormat
Sep 8, 2020
This code
Produce this otput
The probles it's with code
It's possible resolve with this
I think :-)
The text was updated successfully, but these errors were encountered: