| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | abstract class ViewEvent |
||
| 13 | { |
||
| 14 | private View $view; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var array The parameters array passed to the event. |
||
| 18 | */ |
||
| 19 | private array $parameters; |
||
| 20 | |||
| 21 | 2 | final public function __construct(View $view, array $parameters) |
|
| 22 | { |
||
| 23 | 2 | $this->view = $view; |
|
| 24 | 2 | $this->parameters = $parameters; |
|
| 25 | 2 | } |
|
| 26 | |||
| 27 | 2 | final public function getView(): View |
|
| 28 | { |
||
| 29 | 2 | return $this->view; |
|
| 30 | } |
||
| 31 | |||
| 32 | 2 | final public function getParameters(): array |
|
| 35 | } |
||
| 36 | } |
||
| 37 |