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

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

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