Airship\Engine\Continuum\Installers\Cabin::createSymlinks PHP Method

    protected function createSymlinks(string $nameSpace) : bool
    {
        $target = \implode(DIRECTORY_SEPARATOR, [ROOT, 'Cabin', $nameSpace, 'config']);
        $link = \implode(DIRECTORY_SEPARATOR, [ROOT, 'config', 'Cabin', $nameSpace]);
        if (!\symlink($target, $link)) {
            return false;
        }
        return true;
    }