This commit is contained in:
2021-03-18 23:25:35 -03:00
parent 4611e901fc
commit 4ed9c834eb
55 changed files with 63543 additions and 0 deletions

16
ui/setup/web/setups.php Normal file
View File

@ -0,0 +1,16 @@
<?php
use Psr\Container\ContainerInterface as Container;
return [
Slim\Views\Blade::class => function(Container $c) {
return new Slim\Views\Blade(
$c->get('locations')->templates,
$c->get('locations')->cache,
null,
[
'urls' => $c->get('urls'),
'format' => $c->get('format')
]
);
}
];