1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-23 11:46:37 +02:00
ttrss/classes/Logger_Adapter.php

5 lines
134 B
PHP
Raw 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;
}