|
Revision 9081, 0.7 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 |
interface sfLoggerInterface |
|---|
| 20 |
{ |
|---|
| 21 |
|
|---|
| 22 |
* Logs a message. |
|---|
| 23 |
* |
|---|
| 24 |
* @param string $message Message |
|---|
| 25 |
* @param string $priority Message priority |
|---|
| 26 |
*/ |
|---|
| 27 |
public function log($message, $priority = null); |
|---|
| 28 |
} |
|---|
| 29 |
|
|---|