Neos\ContentRepository\Command\NodeCommandController::autoCreateChildNodesCommand PHP Метод

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

This is a legacy command which automatically creates missing child nodes for a node type based on the structure defined in the NodeTypes configuration. NOTE: Usage of this command is deprecated and it will be remove eventually. Please use node:repair instead.
Устаревший: since 1.2
public autoCreateChildNodesCommand ( string $nodeType = null, string $workspace = 'live', boolean $dryRun = false ) : void
$nodeType string Node type name, if empty update all declared node types
$workspace string Workspace name, default is 'live'
$dryRun boolean Don't do anything, but report missing child nodes
Результат void
    public function autoCreateChildNodesCommand($nodeType = null, $workspace = 'live', $dryRun = false)
    {
        $this->pluginConfigurations = self::detectPlugins($this->objectManager);
        $this->pluginConfigurations[NodeCommandControllerPlugin::class]['object']->invokeSubCommand('repair', $this->output, $nodeType, $workspace, $dryRun);
    }