murph-core/src/core/Event/Setting/SettingEvent.php

33 lines
596 B
PHP

<?php
namespace App\Core\Event\Setting;
use Symfony\Contracts\EventDispatcher\Event;
/**
* class SettingEvent.
*
* @author Simon Vieille <simon@deblan.fr>
*/
class SettingEvent extends Event
{
public const INIT_EVENT = 'setting_event.init';
public const FORM_INIT_EVENT = 'setting_event.form_init';
public function __construct(protected $data = null)
{
}
public function getData()
{
return $this->data;
}
public function setOption(string $key, $value): self
{
$this->data['options'][$key] = $value;
return $this;
}
}