for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Buttress\Concrete\CommandBus\Command\Package;
class Uninstall
{
protected $handle;
/**
* @return mixed
*/
public function getHandle()
return $this->handle;
}
* @param mixed $handle
* @return Install
public function setHandle($handle)
$this->handle = $handle;
return $this;