for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the Extension "sf_event_mgt" for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/
namespace DERHANSEN\SfEventMgt\Event;
use DERHANSEN\SfEventMgt\Controller\EventController;
/**
* This event is triggered before the confirm registration view is rendered
final class ModifyConfirmRegistrationViewVariablesEvent
{
* @var array
private $variables;
* @var EventController
private $eventController;
public function __construct(array $variables, EventController $eventController)
$this->variables = $variables;
$this->eventController = $eventController;
}
* @return array
public function getVariables(): array
return $this->variables;
* @param array $variables
public function setVariables(array $variables): void
* @return EventController
public function getEventController(): EventController
return $this->eventController;