More updates to stop using dev or alpha or beta versions.
[yaffs-website] / vendor / consolidation / robo / src / Contract / ProgressInterface.php
1 <?php
2
3 namespace Robo\Contract;
4
5 /**
6  * Robo tasks that take multiple steps to complete should
7  * implement this interface.
8  *
9  * Interface ProgressInterface
10  * @package Robo\Contract
11  */
12 interface ProgressInterface
13 {
14     /**
15      *
16      * @return int
17      */
18     public function progressSteps();
19 }