Spaces:
No application file
No application file
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; | |
} | |
} | |