Phalcon\Error\Error::__call PHP Method

__call() public method

Magic method to retrieve the attributes.
public __call ( string $method, array $args ) : mixed
$method string
$args array
return mixed
    public function __call($method, $args)
    {
        return isset($this->attributes[$method]) ? $this->attributes[$method] : null;
    }