Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: False error message with sopressed error @ on createFromFormat #239

Open
BruceGitHub opened this issue Sep 8, 2020 · 0 comments
Open
Labels
enhancement New feature or request

Comments

@BruceGitHub
Copy link

BruceGitHub commented Sep 8, 2020

This code

    /** @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 :-)

@BruceGitHub 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 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
@shish shish added the enhancement New feature or request label Feb 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants