8000 [Notifier] Added Notifier guide by wouterj · Pull Request #13025 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Notifier] Added Notifier guide #13025

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 6 commits into from
Feb 6, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Reorder the use statements alphabetically
  • Loading branch information
savvasal authored and wouterj committed Feb 3, 2020
commit 01793034f7f6f9551371d9642ea6e5b23c76b348
4 changes: 2 additions & 2 deletions components/notifier.rst
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ With a Slack Message you can add some interactive options called `Block elements

use Symfony\Component\Notifier\Bridge\Slack\Block\SlackActionsBlock;
use Symfony\Component\Notifier\Bridge\Slack\SlackOptions;
use Symfony\Component\Notifier\Message\ChatMessage;
use Symfony\Component\Notifier\Chatter;
use Symfony\Component\Notifier\Bridge\Slack\SlackTransport;
use Symfony\Component\Notifier\Chatter;
use Symfony\Component\Notifier\Message\ChatMessage;

// Initialize a chatter with Slack Transport
$chatter = new Chatter(new SlackTransport('token'));
Expand Down
0