Flow\JSONPath\JSONPath::current PHP Méthode

current() public méthode

Return the current element
public current ( )
    public function current()
    {
        $value = current($this->data);
        return AccessHelper::isCollectionType($value) ? new static($value, $this->options) : $value;
    }