Pull merge.
[yaffs-website] / vendor / consolidation / robo / src / Contract / TaskInterface.php
1 <?php
2 namespace Robo\Contract;
3
4 /**
5  * All Robo tasks should implement this interface.
6  * Task should be configured by chained methods.
7  *
8  * Interface TaskInterface
9  * @package Robo\Contract
10  */
11 interface TaskInterface
12 {
13     /**
14      * @return \Robo\Result
15      */
16     public function run();
17 }