mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-23 21:47:44 -05:00
1. `include`, `include_once`, `require` and `require_once` are expressions not functions, parentheses are not necessary. 2. to move up the directory tree, it's better to use the `dirname` function instead of relying on `/..`.
10 lines
231 B
PHP
10 lines
231 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
error_reporting(E_ALL);
|
|
ini_set('display_errors', '1');
|
|
|
|
const COPY_LOG_TO_SYSLOG = false;
|
|
|
|
require dirname(__DIR__) . '/constants.php';
|
|
require LIB_PATH . '/lib_rss.php'; //Includes class autoloader
|