| 1 | <?php |
||
| 14 | class System extends AbstractHandler |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @return bool |
||
| 18 | * |
||
| 19 | * @todo Find some way to suppress this as needed |
||
|
|
|||
| 20 | */ |
||
| 21 | 3 | public function initialize() |
|
| 27 | |||
| 28 | /** |
||
| 29 | * Writes to the configured PHP error logger. |
||
| 30 | * |
||
| 31 | * @see error_log() |
||
| 32 | * |
||
| 33 | * @param string $message Message to be written to PHP's system log |
||
| 34 | * @return bool Returns the status from the error_log function |
||
| 35 | */ |
||
| 36 | 4 | public function write($message) |
|
| 46 | } |
||
| 47 |
This check looks
TODOcomments that have been left in the code.``TODO``s show that something is left unfinished and should be attended to.