Skip to content

Commit

Permalink
Fix typo in README.md variable reference
Browse files Browse the repository at this point in the history
Corrected a typo in the variable name within the code example in the README documentation, ensuring consistency and preventing confusion for readers following the example. The typo fix changes 'greater' to 'greeter' in the variable dump line.
  • Loading branch information
edipoelwes2 authored and nekufa committed Mar 25, 2024
1 parent 1c858fc commit 229fc82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ $greeter->handle(function ($address) {
mail($address, "Hi there!");
});

var_dump($greater->info()); // can consumer info
var_dump($greeter->info()); // can consumer info

$goodbyer = $stream->getConsumer('goodbyer');
$goodbyer->getConfiguration()->setSubjectFilter('mailer.bye');
Expand Down

0 comments on commit 229fc82

Please sign in to comment.