DebugFormatterHelper.php
1 year ago
DescriptorHelper.php
1 year ago
Dumper.php
1 year ago
FormatterHelper.php
1 year ago
Helper.php
1 year ago
HelperInterface.php
2 years ago
HelperSet.php
2 years ago
InputAwareHelper.php
2 years ago
ProcessHelper.php
2 years ago
ProgressBar.php
1 year ago
ProgressIndicator.php
1 year ago
QuestionHelper.php
1 year ago
SymfonyQuestionHelper.php
1 year ago
Table.php
1 year ago
TableCell.php
2 years ago
TableCellStyle.php
2 years ago
TableRows.php
2 years ago
TableSeparator.php
2 years ago
TableStyle.php
1 year ago
InputAwareHelper.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | namespace Matomo\Dependencies\Symfony\Component\Console\Helper; |
| 12 | |
| 13 | use Matomo\Dependencies\Symfony\Component\Console\Input\InputAwareInterface; |
| 14 | use Matomo\Dependencies\Symfony\Component\Console\Input\InputInterface; |
| 15 | /** |
| 16 | * An implementation of InputAwareInterface for Helpers. |
| 17 | * |
| 18 | * @author Wouter J <waldio.webdesign@gmail.com> |
| 19 | */ |
| 20 | abstract class InputAwareHelper extends Helper implements InputAwareInterface |
| 21 | { |
| 22 | protected $input; |
| 23 | /** |
| 24 | * {@inheritdoc} |
| 25 | */ |
| 26 | public function setInput(InputInterface $input) |
| 27 | { |
| 28 | $this->input = $input; |
| 29 | } |
| 30 | } |
| 31 |