More tidying.
[yaffs-website] / vendor / consolidation / annotated-command / src / OutputDataInterface.php
1 <?php
2 namespace Consolidation\AnnotatedCommand;
3
4 /**
5  * If an annotated command method returns an object that
6  * implements OutputDataInterface, then the getOutputData()
7  * method is used to fetch the output to print from the
8  * result object.
9  */
10 interface OutputDataInterface
11 {
12     public function getOutputData();
13 }