| 1 | <?php |
||
| 5 | final class GenericActionAssignmentEvent |
||
| 6 | { |
||
| 7 | private $variables = []; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $className; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $eventName; |
||
| 18 | |||
| 19 | public function __construct(array $variables, string $className, string $eventName) |
||
| 25 | |||
| 26 | public function getVariables(): array |
||
| 30 | |||
| 31 | public function getClassName(): string |
||
| 35 | |||
| 36 | public function getEventName(): string |
||
| 40 | |||
| 41 | public function setVariables(array $variables): void |
||
| 45 | } |
||
| 46 |