Files
drupal11-ddev/vendor/consolidation/annotated-command/src/Hooks/ExtractOutputInterface.php

15 lines
360 B
PHP
Raw Normal View History

2025-10-08 11:39:17 -04:00
<?php
namespace Consolidation\AnnotatedCommand\Hooks;
/**
* Extract Output hooks are used to select the particular
* data elements of the result that should be printed as
* the command output -- perhaps after being formatted.
*
* @see HookManager::addOutputExtractor()
*/
interface ExtractOutputInterface
{
public function extractOutput($result);
}