Skip to content

Commit

Permalink
fixing events name (#729)
Browse files Browse the repository at this point in the history
Co-authored-by: mihai.leu <[email protected]>
  • Loading branch information
mihaileu and mihai.leu authored Oct 18, 2024
1 parent 242f2ed commit 6b8b029
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Event/AfterProducerPublishMessageEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class AfterProducerPublishMessageEvent extends AMQPEvent
{
public const NAME = AMQPEvent::AFTER_PROCESSING_MESSAGE;
public const NAME = AMQPEvent::AFTER_PUBLISH_MESSAGE;

/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion Event/BeforeProducerPublishMessageEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class BeforeProducerPublishMessageEvent extends AMQPEvent
{
public const NAME = AMQPEvent::BEFORE_PROCESSING_MESSAGE;
public const NAME = AMQPEvent::BEFORE_PUBLISH_MESSAGE;

/**
* @var string
Expand Down

0 comments on commit 6b8b029

Please sign in to comment.