kahlan\Given::__invoke PHP Метод

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

Returns the given data
public __invoke ( $parent = null ) : mixed
Результат mixed
    public function __invoke($parent = null)
    {
        $this->_parent = $parent;
        $closure = $this->_closure;
        return $closure();
    }