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

iGetTheChildNodesOfWithTheFollowingContext() public method

    public function iGetTheChildNodesOfWithTheFollowingContext($path, $table)
    {
        if ($this->isolated === true) {
            $this->callStepInSubProcess(__METHOD__, sprintf(' %s %s %s %s', 'string', escapeshellarg($path), 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();
        }
    }