1 changed files with 22 additions and 0 deletions
@ -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; |
||||
} |
||||
} |
Loading…
Reference in new issue