Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Last active August 7, 2021 21:49
Show Gist options
  • Save ismail1432/395151989d9005a42bad7881997d1afd to your computer and use it in GitHub Desktop.
Save ismail1432/395151989d9005a42bad7881997d1afd to your computer and use it in GitHub Desktop.
<?php
class SandboxController
{
/**
* @Route("/onboarding", name="onboarding")
*/
public function onboarding(NotifierInterface $notifier): Response
{
$notification = new Notification('Welcome Aboard', ['chat/slack']);
$notifier->send($notification);
// Stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment