for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace LAG\AdminBundle\Event\Events;
use LAG\AdminBundle\Metadata\AdminResource;
use Symfony\Contracts\EventDispatcher\Event;
class ResourceCreatedEvent extends Event
{
public function __construct(private AdminResource $resource)
}
public function getResource(): AdminResource
return $this->resource;