9102764db7937d3bece764aff0e7d328bd3cb94c
[yaffs-website] / 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 }