drupal-civicrm/vendor/consolidation/annotated-command/src/Hooks/ExtractOutputInterface.php
2018-01-14 13:10:16 +00:00

15 lines
360 B
PHP

<?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);
}