| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class BaselineManager |
||
| 10 | { |
||
| 11 | private BaselineStorageInterface $storage; |
||
| 12 | |||
| 13 | public function __construct(BaselineStorageInterface $storage) |
||
| 16 | } |
||
| 17 | |||
| 18 | public function init(string $path): self |
||
| 19 | { |
||
| 20 | $this->storage->init($path); |
||
| 21 | return $this; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function setComments(array $comments): void |
||
| 25 | { |
||
| 26 | $this->storage->setComments($comments); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function filterComments(array $comments): array |
||
| 32 | } |
||
| 33 | } |
||
| 34 |