| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class HistoryFactoryStub implements HistoryFactory |
||
| 14 | { |
||
| 15 | public const CODE = 'history-factory-stub'; |
||
| 16 | |||
| 17 | public function newHistoryAnalyser(HistoryMarker $baseLineHistoryMarker, ProjectRoot $projectRoot): HistoryAnalyser |
||
| 18 | { |
||
| 19 | return new HistoryAnalyserStub(); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function newHistoryMarkerFactory(): HistoryMarkerFactory |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getIdentifier(): string |
||
| 30 | } |
||
| 31 | } |
||
| 32 |