PHPComposter\PHPComposter\Paths::initPaths PHP Method

initPaths() protected static method

Initialize the paths.
Since: 0.1.0
protected static initPaths ( )
    protected static function initPaths()
    {
        static::$paths['pwd'] = getcwd() . DIRECTORY_SEPARATOR;
        static::$paths['root_git'] = static::$paths['pwd'] . self::GIT_FOLDER;
        static::$paths['root_hooks'] = static::$paths['root_git'] . self::HOOKS_FOLDER;
        static::$paths['vendor_composter'] = static::$paths['pwd'] . self::COMPOSTER_PATH;
        static::$paths['git_composter'] = static::$paths['root_git'] . self::COMPOSTER_FOLDER;
        static::$paths['git_script'] = static::$paths['vendor_composter'] . self::BIN_FOLDER . self::EXECUTABLE;
        static::$paths['actions'] = static::$paths['git_composter'] . self::ACTIONS_FOLDER;
        static::$paths['git_template'] = static::$paths['vendor_composter'] . self::GIT_TEMPLATE_FOLDER;
        static::$paths['root_template'] = static::$paths['git_composter'] . self::GIT_TEMPLATE_FOLDER;
        static::$paths['git_config'] = static::$paths['git_composter'] . self::CONFIG;
    }