Files
oficial/setup/settings/04_ui.php
2022-03-07 10:09:15 -03:00

12 lines
281 B
PHP

<?php
use Psr\Container\ContainerInterface as Container;
return [
'locations' => DI\decorate(function($prev, Container $c) {
$arr = (array) $prev;
$arr['cache'] = $prev->base . '/cache';
$arr['views'] = $prev->resources . '/views';
return (object) $arr;
})
];