Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\Console\Helper; Chris@0: Chris@17: use Symfony\Component\Console\Input\InputAwareInterface; Chris@0: use Symfony\Component\Console\Input\InputInterface; Chris@0: Chris@0: /** Chris@0: * An implementation of InputAwareInterface for Helpers. Chris@0: * Chris@0: * @author Wouter J Chris@0: */ Chris@0: abstract class InputAwareHelper extends Helper implements InputAwareInterface Chris@0: { Chris@0: protected $input; Chris@0: Chris@0: /** Chris@0: * {@inheritdoc} Chris@0: */ Chris@0: public function setInput(InputInterface $input) Chris@0: { Chris@0: $this->input = $input; Chris@0: } Chris@0: }