WIP: Implement role house manager and feedback providing

This commit is contained in:
Björn Fromme
2023-11-04 18:24:54 +01:00
parent 538d39f63e
commit d5da0d10d5
23 changed files with 576 additions and 37 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Event;
use App\Entity\Feedback;
use Symfony\Contracts\EventDispatcher\Event;
class FeedbackProvidedEvent extends Event
{
public const NAME = 'feedback.provided';
public function __construct(private readonly Feedback $feedback)
{
}
public function getFeedback(): Feedback
{
return $this->feedback;
}
}