a3b1c4e8da7a67513692ee090f7986fddffe4db3
[yaffs-website] / vendor / consolidation / robo / src / Contract / CompletionInterface.php
1 <?php
2 namespace Robo\Contract;
3
4 /**
5  * Any Robo tasks that implements this interface will
6  * be called when the task collection it is added to
7  * completes.
8  *
9  * Interface CompletionInterface
10  * @package Robo\Contract
11  */
12 interface CompletionInterface extends TaskInterface
13 {
14     /**
15      * Revert an operation that can be rolled back
16      */
17     public function complete();
18 }