independent-analytics
/
vendor
/
symfony
/
console
/
Completion
/
Output
/
CompletionOutputInterface.php
CompletionOutputInterface.php
25 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 IAWP_SCOPED\Symfony\Component\Console\Completion\Output; |
| 12 | |
| 13 | use IAWP_SCOPED\Symfony\Component\Console\Completion\CompletionSuggestions; |
| 14 | use IAWP_SCOPED\Symfony\Component\Console\Output\OutputInterface; |
| 15 | /** |
| 16 | * Transforms the {@see CompletionSuggestions} object into output readable by the shell completion. |
| 17 | * |
| 18 | * @author Wouter de Jong <wouter@wouterj.nl> |
| 19 | * @internal |
| 20 | */ |
| 21 | interface CompletionOutputInterface |
| 22 | { |
| 23 | public function write(CompletionSuggestions $suggestions, OutputInterface $output) : void; |
| 24 | } |
| 25 |