| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class FriendlySolution implements Solution |
||
| 11 | { |
||
| 12 | private FriendlyExceptionInterface $friendlyException; |
||
| 13 | |||
| 14 | 2 | public function __construct(FriendlyExceptionInterface $friendlyException) |
|
| 17 | 2 | } |
|
| 18 | |||
| 19 | 1 | public function getSolutionTitle(): string |
|
| 20 | { |
||
| 21 | 1 | return $this->friendlyException->getName(); |
|
| 22 | } |
||
| 23 | |||
| 24 | 2 | public function getSolutionDescription(): string |
|
| 27 | } |
||
| 28 | |||
| 29 | 1 | public function getDocumentationLinks(): array |
|
| 32 | } |
||
| 33 | } |