Skip to content

Commit d44ec7e

Browse files
committed
init
Signed-off-by: Kevin Nguyen <k.nguyen@thecodingmachine.com>
1 parent 6ae1f75 commit d44ec7e

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?php
2+
/*
3+
* Copyright (c) 2013 David Negrier
4+
*
5+
* See the file LICENSE.txt for copying permission.
6+
*/
7+
8+
namespace Mouf\Utils\Log\Psr;
9+
10+
use Psr\Log\LoggerInterface;
11+
use Psr\Log\LogLevel;
12+
use Psr\Log\AbstractLogger;
13+
14+
/**
15+
* A logger class that writes messages into the php error_log.
16+
*/
17+
class MultiLogger extends AbstractLogger {
18+
19+
/**
20+
* Logs with an arbitrary level.
21+
*
22+
* @param mixed $level
23+
* @param string $message
24+
* @param array $context
25+
* @return null
26+
*/
27+
public function log($level, $message, array $context = array()) {
28+
//TODO
29+
}
30+
31+
}
32+
33+
?>

0 commit comments

Comments
 (0)