| 1 | <?php |
||
| 14 | class System implements HandlerInterface |
||
| 15 | { |
||
| 16 | public function __construct() |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return bool |
||
| 23 | */ |
||
| 24 | public function initialize() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Writes to the configured PHP error logger. |
||
| 33 | * |
||
| 34 | * @see error_log() |
||
| 35 | * |
||
| 36 | * @param string $message Message to be written to PHP's system log |
||
| 37 | * @return bool Returns the status from the error_log function |
||
| 38 | */ |
||
| 39 | public function write($message) |
||
| 45 | } |