Deployer\Bootstrap\BootstrapByConfigFile::setConfig PHP Method

setConfig() public method

public setConfig ( string $file ) : BootstrapByConfigFile
$file string
return BootstrapByConfigFile
    public function setConfig($file)
    {
        $this->configFile = $file;
        return $this;
    }

Usage Example

示例#1
0
/**
 * Load server list file.
 * @param string $file
 */
function serverList($file)
{
    $bootstrap = new Bootstrap\BootstrapByConfigFile();
    $bootstrap->setConfig($file);
    $bootstrap->parseConfig();
    $bootstrap->initServers();
    $bootstrap->initClusters();
}