ttrss/classes/Logger_Adapter.php

5 lines
134 B
PHP
Raw Permalink Normal View History

<?php
interface Logger_Adapter {
2021-11-10 22:38:25 +01:00
function log_error(int $errno, string $errstr, string $file, int $line, string $context): bool;
}