Current File : /var/www/html/maausk/vendor/thecodingmachine/safe/deprecated/Exceptions/LibeventException.php
<?php
namespace Safe\Exceptions;

class LibeventException extends \ErrorException implements SafeExceptionInterface
{
    public static function createFromPhpError(): self
    {
        $error = error_get_last();
        return new self($error['message'] ?? 'An error occured', 0, $error['type'] ?? 1);
    }
}