| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class AfterRender extends ViewEvent |
||
| 11 | { |
||
| 12 | private string $result; |
||
| 13 | |||
| 14 | 8 | public function __construct(string $file, array $parameters, string $result) |
|
| 15 | { |
||
| 16 | 8 | $this->result = $result; |
|
| 17 | 8 | parent::__construct($file, $parameters); |
|
| 18 | } |
||
| 19 | |||
| 20 | 8 | public function getResult(): string |
|
| 23 | } |
||
| 24 | } |
||
| 25 |