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

    protected function createSymlinks(string $cabin, array $config, string $index) : bool
    {
        $res = \symlink(ROOT . '/Motifs/' . $config[$index]['path'] . '/public', ROOT . '/Cabin/' . $cabin . '/public/motif/ ' . $index);
        $res = $res && \symlink(ROOT . '/Motifs/' . $config[$index]['path'] . '/lens', ROOT . '/Cabin/' . $cabin . '/Lens/motif/ ' . $index);
        return $res;
    }