From 1a0bbcd555ad997691703aedbf7c47bcb08b2884 Mon Sep 17 00:00:00 2001 From: devbastic Date: Thu, 23 May 2024 09:59:11 +0200 Subject: [PATCH] Update README.md Corrected mistake in 2nd payload reference (oops). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b7a451d..c193c64 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ echo $message1->payload . PHP_EOL; // hello // locks untill message is fetched from subject // to limit lock timeout, pass optional timeout value $message2 = $queue->next(); -echo $message2->payload() . PHP_EOL; // world +echo $message2->payload . PHP_EOL; // world $client->publish('test_subject', 'hello'); $client->publish('test_subject', 'batching');