Path
This commit is contained in:
@ -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'
|
||||
]);
|
||||
|
Reference in New Issue
Block a user