16 lines
392 B
PHP
16 lines
392 B
PHP
|
<?php
|
||
|
use Psr\Container\ContainerInterface;
|
||
|
|
||
|
return [
|
||
|
Slim\Views\Blade::class => function(ContainerInterface $container) {
|
||
|
return new Slim\Views\Blade(
|
||
|
$container->get('folders')->get('templates'),
|
||
|
$container->get('folders')->get('cache'),
|
||
|
null,
|
||
|
[
|
||
|
'urls' => $container->get('urls')
|
||
|
]
|
||
|
);
|
||
|
}
|
||
|
];
|