1
0

Created NullLogger to log nothing.

Этот коммит содержится в:
Gergely Polonkai (W00d5t0ck)
2012-10-08 14:36:20 +02:00
родитель 24cf8f4c0d
Коммит b52fc4c054

22
src/SmsGateway/Logger/NullLogger.php Обычный файл
Просмотреть файл

@@ -0,0 +1,22 @@
<?php
namespace SmsGateway\Logger;
use SmsGateway\LoggerInterface;
/**
* Description of NullLogger
*
* @author polonkai.gergely
*/
class NullLogger implements LoggerInterface
{
public function auditLog($type, $username, $message)
{
return true;
}
public function messageLog($username, $recipient, $message, array $passwordLocations)
{
return true;
}
}