23 lines
371 B
PHP
Executable File
23 lines
371 B
PHP
Executable File
<?php
|
|
|
|
namespace MauticPlugin\MauticFocusBundle\Event;
|
|
|
|
use MauticPlugin\MauticFocusBundle\Entity\Stat;
|
|
use Symfony\Contracts\EventDispatcher\Event;
|
|
|
|
class FocusViewEvent extends Event
|
|
{
|
|
public function __construct(
|
|
private Stat $stat,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* @return Stat
|
|
*/
|
|
public function getStat()
|
|
{
|
|
return $this->stat;
|
|
}
|
|
}
|