Page MenuHomeWickedGov Phorge

InputAwareHelper.php
No OneTemporary

Size
731 B
Referenced Files
None
Subscribers
None

InputAwareHelper.php

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Console\Helper;
use Symfony\Component\Console\Input\InputAwareInterface;
use Symfony\Component\Console\Input\InputInterface;
/**
* An implementation of InputAwareInterface for Helpers.
*
* @author Wouter J <waldio.webdesign@gmail.com>
*/
abstract class InputAwareHelper extends Helper implements InputAwareInterface
{
protected InputInterface $input;
public function setInput(InputInterface $input): void
{
$this->input = $input;
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 14:48 (3 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a1/30/fe36d6bf4ff613f1d9c3613299af
Default Alt Text
InputAwareHelper.php (731 B)

Event Timeline