← Back
Editing: ControlSentEvent.php
<?php namespace App\Event; use App\Entity\Controle; use Symfony\Contracts\EventDispatcher\Event; class ControlSentEvent extends Event { protected Controle $control; protected array $receivedControl; public function __construct(Controle $control, array $receivedControl) { $this->control = $control; $this->receivedControl = $receivedControl; } public function getControl(): Controle { return $this->control; } public function getReceivedControl(): array { return $this->receivedControl; } }
Save File
Cancel