Files
icehrm/lib/composer/vendor/consolidation/robo/src/Contract/ProgressInterface.php
2017-09-03 20:39:22 +02:00

20 lines
299 B
PHP

<?php
namespace Robo\Contract;
/**
* Robo tasks that take multiple steps to complete should
* implement this interface.
*
* Interface ProgressInterface
* @package Robo\Contract
*/
interface ProgressInterface
{
/**
*
* @return int
*/
public function progressSteps();
}