Update 2022-03-07

This commit is contained in:
2022-03-07 09:59:51 -03:00
committed by Juan Pablo Vial
parent f85f9ff3c9
commit 8ed1742de8
8 changed files with 110 additions and 18 deletions

11
setup/settings/04_ui.php Normal file
View File

@ -0,0 +1,11 @@
<?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;
})
];