Magestead\Service\VersionControl::__construct PHP Method

__construct() public method

VersionControl constructor.
public __construct ( $repoUrl, $projectPath, Symfony\Component\Console\Output\OutputInterface $output )
$repoUrl
$projectPath
$output Symfony\Component\Console\Output\OutputInterface
    public function __construct($repoUrl, $projectPath, OutputInterface $output)
    {
        $this->_output = $output;
        $this->_repoUrl = $repoUrl;
        $this->_projectPath = $projectPath;
        $this->execute($output);
    }