Codeception\Module\WPCLI::buildCommand PHP Метод

buildCommand() защищенный Метод

protected buildCommand ( $userCommand ) : string
$userCommand
Результат string
    protected function buildCommand($userCommand)
    {
        $mergedCommand = $this->mergeCommandOptions($userCommand);
        $command = implode(' ', [PHP_BINARY, $this->bootPath, $mergedCommand]);
        return $command;
    }