for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dock\Installer\System\Mac;
use Dock\Installer\SoftwareInstallTask;
use SRIO\ChainOfResponsibility\DependentChainProcessInterface;
class Vagrant extends SoftwareInstallTask implements DependentChainProcessInterface
{
/**
* {@inheritdoc}
*/
public function getName()
return 'vagrant';
}
public function dependsOn()
return ['brewCask'];
protected function getVersionCommand()
return 'vagrant --version';
protected function getInstallCommand()
return 'brew cask install vagrant';