Skip to content

Commit

Permalink
fix: add FlowEventAware to CheckoutOrderCommentCreatedEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanpoensgen committed May 10, 2024
1 parent 2e1f86b commit 6ed753e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Comments on the order",
"type": "shopware-platform-plugin",
"license": "MIT",
"version": "3.0.0",
"version": "3.0.1",
"authors": [
{
"name": "Stefan Poensgen"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
use Shopware\Core\Framework\Event\EventData\EntityType;
use Shopware\Core\Framework\Event\EventData\EventDataCollection;
use Shopware\Core\Framework\Event\EventData\MailRecipientStruct;
use Shopware\Core\Framework\Event\FlowEventAware;
use Shopware\Core\Framework\Event\MailAware;
use Shopware\Core\Framework\Event\OrderAware;
use Shopware\Core\Framework\Event\SalesChannelAware;
use SptecOrderComments\Extension\Checkout\Order\OrderComment\OrderCommentDefinition;
use SptecOrderComments\Extension\Checkout\Order\OrderComment\OrderCommentEntity;
use Symfony\Contracts\EventDispatcher\Event;

class CheckoutOrderCommentCreatedEvent extends Event implements SalesChannelAware, OrderAware, MailAware, CustomerAware
class CheckoutOrderCommentCreatedEvent extends Event implements SalesChannelAware, OrderAware, MailAware, CustomerAware, FlowEventAware
{
public const EVENT_NAME = 'checkout.order.comment.created';

Expand Down

0 comments on commit 6ed753e

Please sign in to comment.