mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 13:54:02 -07:00
Fixing the .env load (#643)
This commit is contained in:
parent
ef4e1aa18f
commit
e5e325df85
2 changed files with 2 additions and 3 deletions
|
@ -21,8 +21,7 @@ if (PHP_VERSION_ID < 70400) {
|
||||||
/**
|
/**
|
||||||
* Define some basic configuration arrays
|
* Define some basic configuration arrays
|
||||||
*/
|
*/
|
||||||
unset($stopwords, $synonyms_match, $synonyms_replace);
|
$userdata = $theme = $images = $lang = $bf = $attach_config = [];
|
||||||
$userdata = $theme = $images = $lang = $nav_links = $bf = $attach_config = [];
|
|
||||||
$gen_simple_header = false;
|
$gen_simple_header = false;
|
||||||
$user = null;
|
$user = null;
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ class Env
|
||||||
*
|
*
|
||||||
* @var RepositoryInterface|null
|
* @var RepositoryInterface|null
|
||||||
*/
|
*/
|
||||||
protected static ?RepositoryInterface $repository;
|
protected static $repository;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable the putenv adapter.
|
* Enable the putenv adapter.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue