| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 61.53% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Response |
||
| 12 | { |
||
| 13 | private ReflectionClass $domainCommand; |
||
| 14 | |||
| 15 | private string $viewUrl; |
||
| 16 | |||
| 17 | 2 | public function __construct(string $domainCommand, string $viewUrl) |
|
| 18 | { |
||
| 19 | 2 | $this->domainCommand = new ReflectionClass($domainCommand); |
|
| 20 | 2 | $this->viewUrl = $viewUrl; |
|
| 21 | 2 | } |
|
| 22 | |||
| 23 | 2 | public function getDomainCommand(): DomainCommand |
|
| 32 | ); |
||
| 33 | } |
||
| 34 | } |
||
| 35 | |||
| 36 | 2 | public function getViewUrl(): string |
|
| 39 | } |
||
| 40 | } |
||
| 41 |