Created File* backends

This commit is contained in:
Gergely POLONKAI
2012-10-06 23:17:20 +02:00
parent 57a2da32cb
commit 498e00b7d2
10 changed files with 431 additions and 28 deletions

View File

@@ -3,7 +3,7 @@ namespace SmsGateway;
interface LoggerInterface
{
const SMSSENDER_AUDIT_LOGIN = 1;
const LOG_AUDIT_LOGIN = 1;
/**
* Log an audit event
@@ -23,5 +23,5 @@ interface LoggerInterface
* @param string $recipient The recipient of the message
* @param string $message The message itself
*/
public function messageLog($username, $recipient, $message);
public function messageLog($username, $recipient, $message, array $passwordLocations);
}