| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | class StagedFiles implements Placeholder |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * Git repository |
||
| 29 | * |
||
| 30 | * @var \SebastianFeldmann\Git\Repository |
||
| 31 | */ |
||
| 32 | private $repository; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * UpdatedFiles constructor |
||
| 36 | * |
||
| 37 | * @param \SebastianFeldmann\Git\Repository $repository |
||
| 38 | */ |
||
| 39 | public function __construct(Repository $repository) |
||
| 40 | { |
||
| 41 | $this->repository = $repository; |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param array $options |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function replacement(array $options): string |
||
| 55 | } |
||
| 56 | } |
||
| 57 |