Files
farmOS-dev/vendor/consolidation/annotated-command/src/OutputDataInterface.php
2024-12-10 15:08:16 +01:00

14 lines
319 B
PHP

<?php
namespace Consolidation\AnnotatedCommand;
/**
* If an annotated command method returns an object that
* implements OutputDataInterface, then the getOutputData()
* method is used to fetch the output to print from the
* result object.
*/
interface OutputDataInterface
{
public function getOutputData();
}