Neos\ContentRepository\Tests\Behavior\Features\Bootstrap\NodeOperationsTrait::iGetTheNodesOnPathToWithTheFollowingContext PHP Метод

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

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