This commit is contained in:
2022-08-08 23:03:28 -04:00
parent cdb4b382b7
commit 85fef16b27
7 changed files with 84 additions and 9 deletions

View File

@ -6,25 +6,25 @@ return [
return \ProVM\Implement\Collection::fromArray([
'base' => dirname(__DIR__, 2),
'resources' => function(\Psr\Collection\CollectionInterface $collection) {
return implode(DIRECTORY_SEPARATOR, [
return \ProVM\Implement\Path::fromArray([
$collection['base'],
'resources'
]);
},
'documentation' => function(\Psr\Collection\CollectionInterface $collection) {
return implode(DIRECTORY_SEPARATOR, [
return \ProVM\Implement\Path::fromArray([
$collection['resources'],
'documentation'
]);
},
'routes' => function(\Psr\Collection\CollectionInterface $collection) {
return implode(DIRECTORY_SEPARATOR, [
return \ProVM\Implement\Path::fromArray([
$collection['resources'],
'routes'
]);
},
'public' => function(\Psr\Collection\CollectionInterface $collection) {
return implode(DIRECTORY_SEPARATOR, [
return \ProVM\Implement\Path::fromArray([
$collection['base'],
'public'
]);