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