Neos\ContentRepository\Tests\Behavior\Features\Bootstrap\NodeOperationsTrait::iGetTheChildNodesOfWithFilterAndTheFollowingContext PHP Method

iGetTheChildNodesOfWithFilterAndTheFollowingContext() public method

public iGetTheChildNodesOfWithFilterAndTheFollowingContext ( $path, $filter, $table )
    public function iGetTheChildNodesOfWithFilterAndTheFollowingContext($path, $filter, $table)
    {
        if ($this->isolated === true) {
            $this->callStepInSubProcess(__METHOD__, sprintf(' %s %s %s %s %s %s', 'string', escapeshellarg($path), 'string', escapeshellarg($filter), escapeshellarg(\Neos\Flow\Tests\Functional\Command\TableNode::class), escapeshellarg(json_encode($table->getHash()))));
        } else {
            $rows = $table->getHash();
            $context = $this->getContextForProperties($rows[0]);
            $node = $context->getNode($path);
            $this->currentNodes = $node->getChildNodes($filter);
        }
    }