wallabag/src/Event/ConfigUpdatedEvent.php
2024-02-23 07:42:48 +01:00

27 lines
465 B
PHP

<?php
namespace Wallabag\Event;
use Symfony\Contracts\EventDispatcher\Event;
use Wallabag\Entity\Config;
/**
* This event is fired as soon as user configuration is updated.
*/
class ConfigUpdatedEvent extends Event
{
public const NAME = 'config.updated';
protected $config;
public function __construct(Config $entry)
{
$this->config = $entry;
}
public function getConfig(): Config
{
return $this->config;
}
}