Fixing method visibility

This commit is contained in:
Jose Lorenzo Rodriguez 2013-05-14 23:52:39 +02:00
parent 018e5d0659
commit 1d61e21eaa

View file

@ -131,7 +131,7 @@ class SyslogLog extends BaseLog {
* @param sting $output
* @return void
*/
public function _open($ident, $options, $facility) {
protected function _open($ident, $options, $facility) {
openlog($ident, $options, $facility);
}