More updates to stop using dev or alpha or beta versions.
[yaffs-website] / vendor / consolidation / robo / src / Contract / RollbackInterface.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  * fails, and runs its rollback operation.
8  *
9  * Interface RollbackInterface
10  * @package Robo\Contract
11  */
12 interface RollbackInterface extends TaskInterface
13 {
14     /**
15      * Revert an operation that can be rolled back
16      */
17     public function rollback();
18 }