Habari\StackItem::__toString PHP Метод

__toString() публичный Метод

Define behavior for when this StackItem is cast to a string
public __toString ( ) : string
Результат string
    public function __toString()
    {
        if (is_callable($this->resource)) {
            /** @var Callable $fn */
            $fn = $this->resource;
            return $fn($this);
        }
        return $this->resource;
    }