Files
oficial/setup/api/setups.php
2021-03-25 23:33:37 -03:00

16 lines
310 B
PHP

<?php
use Psr\Container\ContainerInterface as Container;
return [
Slim\Views\Blade::class => function(Container $c) {
return new Slim\Views\Blade(
$c->get('locations')->views,
$c->get('locations')->cache,
null,
[
'locations' => $c->get('locations')
]
);
}
];