Skip to content

Commit

Permalink
change from private to protected in factory class
Browse files Browse the repository at this point in the history
  • Loading branch information
Lotykun-Softonic committed Nov 23, 2023
1 parent 67eb74d commit 4f0299b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Factories/AmqpMessageFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function make(EventMessageInterface $eventMessage, array $properties = []
);
}

private function checkMessage(array $message): void
protected function checkMessage(array $message): void
{
if (empty(array_filter($message))) {
throw new LogicException('No message provided');
Expand Down

0 comments on commit 4f0299b

Please sign in to comment.