blob: f988855e6c0012c9fa1f665420b503a39acbb5c5 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
declare(strict_types=1);
error_reporting(E_ALL);
ini_set('display_errors', '1');
const COPY_LOG_TO_SYSLOG = false;
require(__DIR__ . '/../constants.php');
require(LIB_PATH . '/lib_rss.php'); //Includes class autoloader
|