ProgressInterface
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
progressSteps() 0 1 ?
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
}
20