Skip to content

Instantly share code, notes, and snippets.

@amacgregor
Last active August 29, 2015 14:14
Show Gist options
  • Save amacgregor/0fc56114ea4fba62d9e1 to your computer and use it in GitHub Desktop.
Save amacgregor/0fc56114ea4fba62d9e1 to your computer and use it in GitHub Desktop.
<?php
class NotificationManager {
public function sendNotification(NotificationInterface $notification, $data)
{
$notification->setData($data);
$notification->sendNotification();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment