1 | <?php |
||
14 | class System extends AbstractHandler |
||
15 | { |
||
16 | /** |
||
17 | * @return bool |
||
18 | */ |
||
19 | 1 | public function initialize() |
|
25 | |||
26 | /** |
||
27 | * Writes to the configured PHP error logger. |
||
28 | * |
||
29 | * @see error_log() |
||
30 | * |
||
31 | * @param string $message Message to be written to PHP's system log |
||
32 | * @return bool Returns the status from the error_log function |
||
33 | */ |
||
34 | 23 | public function write($message) |
|
44 | } |
||
45 |