Skip to content

Instantly share code, notes, and snippets.

@wouterj
Created December 28, 2015 14:50
Show Gist options
  • Select an option

  • Save wouterj/8f600128058ae8a23010 to your computer and use it in GitHub Desktop.

Select an option

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