mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-28 05:01:29 +00:00
enforce some stricter type checking for loggers
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
class Logger_Syslog {
|
||||
class Logger_Syslog implements Logger_Adapter {
|
||||
|
||||
function log_error($errno, $errstr, $file, $line, $context) {
|
||||
function log_error(int $errno, string $errstr, string $file, int $line, $context) {
|
||||
|
||||
switch ($errno) {
|
||||
case E_ERROR:
|
||||
|
||||
Reference in New Issue
Block a user