SimpleErrorQueue::extract PHP Method

extract() public method

The list of error informations contains: - severity as the PHP error code, - the error message, - the file with the error, - the line number and - a list of PHP super global arrays.
public extract ( ) : mixed
return mixed False if none, or a list of error information.
    public function extract()
    {
        if (count($this->queue)) {
            return array_shift($this->queue);
        }
        return false;
    }