Mercurial > hg > isophonics-drupal-site
annotate vendor/consolidation/annotated-command/src/Hooks/ProcessResultInterface.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
rev | line source |
---|---|
Chris@0 | 1 <?php |
Chris@0 | 2 namespace Consolidation\AnnotatedCommand\Hooks; |
Chris@0 | 3 |
Chris@0 | 4 use Consolidation\AnnotatedCommand\CommandData; |
Chris@0 | 5 |
Chris@0 | 6 /** |
Chris@0 | 7 * A result processor takes a result object, processes it, and |
Chris@0 | 8 * returns another result object. For example, if a result object |
Chris@0 | 9 * represents a 'task', then a task-runner hook could run the |
Chris@0 | 10 * task and return the result from that execution. |
Chris@0 | 11 * |
Chris@0 | 12 * @see HookManager::addResultProcessor() |
Chris@0 | 13 */ |
Chris@0 | 14 interface ProcessResultInterface |
Chris@0 | 15 { |
Chris@0 | 16 /** |
Chris@0 | 17 * After a command has executed, if the result is something |
Chris@0 | 18 * that needs to be processed, e.g. a collection of tasks to |
Chris@0 | 19 * run, then execute it and return the new result. |
Chris@0 | 20 * |
Chris@0 | 21 * @param mixed $result Result to (potentially) be processed |
Chris@0 | 22 * @param CommandData $commandData Reference to commandline arguments and options |
Chris@0 | 23 * |
Chris@0 | 24 * @return mixed $result |
Chris@0 | 25 */ |
Chris@0 | 26 public function process($result, CommandData $commandData); |
Chris@0 | 27 } |