ttrss/classes/Logger_Adapter.php

5 lines
134 B
PHP

<?php
interface Logger_Adapter {
function log_error(int $errno, string $errstr, string $file, int $line, string $context): bool;
}