| 1 | <?php |
||
| 13 | class Commits extends All implements RunnerInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $commits = array(); |
||
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | * |
||
| 23 | * @param array $commits |
||
| 24 | */ |
||
| 25 | public function __construct(Api $api, AnalyzerInterface $analyzer, array $commits) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string[] |
||
| 34 | */ |
||
| 35 | protected function getCommits() |
||
| 39 | } |
||
| 40 |