Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wouterj
Created December 28, 2015 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wouterj/8f600128058ae8a23010 to your computer and use it in GitHub Desktop.
Save wouterj/8f600128058ae8a23010 to your computer and use it in GitHub Desktop.
<?php
// ...
class MailLogger implements LoggerInterface
{
private $mailer;
public function __construct(MailerInterface $mailer)
{
$this->mailer = $mailer;
}
public function log(...)
{
// ...
$this->mailer->mail(...);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment