12 lines
281 B
PHP
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;
|
||
|
})
|
||
|
];
|