getRootDir example


    public function getRootDir()
    {
        return \dirname(__DIR__, 2);
    }

    /** * @return string */
    public function getCacheDir()
    {
        return $this->getRootDir() . '/var/cache/' . $this->environment . '_' . $this->release['revision'];
    }

    /** * Gets the log directory. * * @return string The log directory */
    public function getLogDir()
    {
        return $this->getRootDir() . '/var/log';
    }

    
Home | Imprint | This part of the site doesn't use cookies.