| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare( strict_types=1 ); |
||
| 20 | class StatementGuidParser { |
||
| 21 | |||
| 22 | private EntityIdParser $entityIdParser; |
||
| 23 | |||
| 24 | public function __construct( EntityIdParser $entityIdParser ) { |
||
| 25 | 11 | $this->entityIdParser = $entityIdParser; |
|
| 26 | 11 | } |
|
| 27 | 11 | ||
| 28 | /** |
||
| 29 | * @throws StatementGuidParsingException |
||
| 30 | */ |
||
| 31 | public function parse( string $serialization ): StatementGuid { |
||
| 43 | 4 | ); |
|
| 44 | } |
||
| 48 |