for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: Jenner
* Date: 2015/10/14
* Time: 10:10
*/
namespace Jenner\LogMonitor\Notification;
class EchoNotification implements NotificationInterface
{
* send message to members
* @param array $config
* @param $message
* @return mixed
public function send($config, $message)
echo 'config:' . json_encode($config) . '. message:' . $message . PHP_EOL;
}