Skip to content

Commit

Permalink
Fix: disable proxy classes for events
Browse files Browse the repository at this point in the history
  • Loading branch information
davidspiola committed Jul 3, 2024
1 parent b6cefa4 commit 38ab98a
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Classes/Event/MauticEmailCreate.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
use Neos\EventSourcing\Event\DomainEventInterface;
use Doctrine\ORM\Mapping as ORM;

/**
* @Flow\Proxy(false)
*/
class MauticEmailCreate implements DomainEventInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Classes/Event/MauticEmailDelete.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use Neos\EventSourcing\Event\DomainEventInterface;

/**
* @Flow\Proxy(false)
*/
final class MauticEmailDelete implements DomainEventInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Classes/Event/MauticEmailPublish.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use Neos\EventSourcing\Event\DomainEventInterface;

/**
* @Flow\Proxy(false)
*/
final class MauticEmailPublish implements DomainEventInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Classes/Event/MauticEmailSend.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use Neos\EventSourcing\Event\DomainEventInterface;

/**
* @Flow\Proxy(false)
*/
final class MauticEmailSend implements DomainEventInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Classes/Event/MauticEmailSent.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use Neos\EventSourcing\Event\DomainEventInterface;

/**
* @Flow\Proxy(false)
*/
final class MauticEmailSent implements DomainEventInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Classes/Event/MauticEmailSync.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use Neos\EventSourcing\Event\DomainEventInterface;

/**
* @Flow\Proxy(false)
*/
final class MauticEmailSync implements DomainEventInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Classes/Event/MauticEmailTaskFinished.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use Neos\EventSourcing\Event\DomainEventInterface;

/**
* @Flow\Proxy(false)
*/
final class MauticEmailTaskFinished implements DomainEventInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Classes/Event/MauticEmailUnpublish.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use Neos\EventSourcing\Event\DomainEventInterface;

/**
* @Flow\Proxy(false)
*/
final class MauticEmailUnpublish implements DomainEventInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Classes/Event/MauticEmailUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
use Neos\EventSourcing\Event\DomainEventInterface;
use Doctrine\ORM\Mapping as ORM;

/**
* @Flow\Proxy(false)
*/
class MauticEmailUpdate implements DomainEventInterface
{
/**
Expand Down

0 comments on commit 38ab98a

Please sign in to comment.