for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace VideoGamesRecords\CoreBundle\Event;
use Symfony\Contracts\EventDispatcher\Event;
use VideoGamesRecords\CoreBundle\Entity\Serie;
class SerieEvent extends Event
{
protected Serie $serie;
public function __construct(Serie $serie)
$this->serie = $serie;
}
public function getSerie(): Serie
return $this->serie;