Skip to content

Commit

Permalink
Ensure compatibility to PHP 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
garbast authored and achimfritz committed Nov 6, 2024
1 parent d9f361d commit 30fab97
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions Classes/Events/BeforeContainerPreviewIsRenderedEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,20 @@

final class BeforeContainerPreviewIsRenderedEvent
{
public function __construct(
protected Container $container,
protected StandaloneView $view,
protected Grid $grid,
protected GridColumnItem $item
) {
protected Container $container;

protected StandaloneView $view;

protected Grid $grid;

protected GridColumnItem $item;

public function __construct(Container $container, StandaloneView $view, Grid $grid, GridColumnItem $item)
{
$this->container = $container;
$this->view = $view;
$this->grid = $grid;
$this->item = $item;
}

public function getContainer(): Container
Expand Down

0 comments on commit 30fab97

Please sign in to comment.