17 lines
274 B
PHP
17 lines
274 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace MailAccountAdmin;
|
||
|
|
|
||
|
|
class Settings
|
||
|
|
{
|
||
|
|
public function getTwigSettings(): array
|
||
|
|
{
|
||
|
|
$cacheDir = getenv('TWIG_CACHE_DIR');
|
||
|
|
|
||
|
|
return [
|
||
|
|
'cache' => !empty($cacheDir) ? $cacheDir : false,
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|