Files
oficial/cli/setup/settings/folders.php
2023-11-25 00:56:18 -03:00

16 lines
378 B
PHP

<?php
return [
'folders' => function() {
$arr = ['base' => dirname(__FILE__, 3)];
$arr['resources'] = implode(DIRECTORY_SEPARATOR, [
$arr['base'],
'resources'
]);
$arr['commands'] = implode(DIRECTORY_SEPARATOR, [
$arr['resources'],
'commands'
]);
return (object) $arr;
}
];