8000 Added missing closing parentheses and closing bracket by phoefnagel · Pull Request #12573 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Added missing closing parentheses and closing bracket #12573

8000 New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 31, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Missing closing parentheses and closing bracket
  • Loading branch information
phoefnagel authored and OskarStark committed Oct 31, 2019
commit 43a239bddb82560118a5adce7721237ef1d45dd4
2 changes: 1 addition & 1 deletion components/messenger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ do is to write your own CSV receiver::
throw $exception;
}

return [$envelope->with(new CustomStamp($yourEnvelope['id']);
return [$envelope->with(new CustomStamp($yourEnvelope['id']))];
}

public function ack(Envelope $envelope): void
Expand Down
0