|
Revision 9081, 1.0 kB
(checked in by Carl.Vondrick, 5 years ago)
|
1.1: fixed @param phpdoc to fit specs for log (refs #2991)
|
- Property svn:mime-type set to
text/x-php
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
class sfNoLogger extends sfLogger |
|---|
| 20 |
{ |
|---|
| 21 |
|
|---|
| 22 |
* Initializes this logger. |
|---|
| 23 |
* |
|---|
| 24 |
* @param sfEventDispatcher $dispatcher A sfEventDispatcher instance |
|---|
| 25 |
* @param array $options An array of options. |
|---|
| 26 |
* |
|---|
| 27 |
* @return Boolean true, if initialization completes successfully, otherwise false. |
|---|
| 28 |
*/ |
|---|
| 29 |
public function initialize(sfEventDispatcher $dispatcher, $options = array()) |
|---|
| 30 |
{ |
|---|
| 31 |
} |
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
* Logs a message. |
|---|
| 35 |
* |
|---|
| 36 |
* @param string $message Message |
|---|
| 37 |
* @param string $priority Message priority |
|---|
| 38 |
*/ |
|---|
| 39 |
protected function doLog($message, $priority) |
|---|
| 40 |
{ |
|---|
| 41 |
} |
|---|
| 42 |
} |
|---|
| 43 |
|
|---|