for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Robo\Common;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Console\Input\InputInterface;
trait InputAwareTrait
{
/**
* @var \Symfony\Component\Console\Input\InputInterface
*/
protected $input;
* @param \Symfony\Component\Console\Input\InputInterface $input
*
* @return $this
* @see \Symfony\Component\Console\Input\InputAwareInterface::setInput()
public function setInput(InputInterface $input)
$this->input = $input;
return $this;
}
* @return \Symfony\Component\Console\Input\InputInterface
protected function input()
if (!isset($this->input)) {
$this->setInput(new ArgvInput());
return $this->input;
* Backwards compatibility.
* @deprecated
protected function getInput()
return $this->input();