Sylius\Bundle\CoreBundle\Application\Kernel::getCacheDir PHP Méthode

getCacheDir() public méthode

public getCacheDir ( )
    public function getCacheDir()
    {
        if ($this->isVagrantEnvironment()) {
            return '/dev/shm/sylius/cache/' . $this->getEnvironment();
        }
        return dirname($this->getRootDir()) . '/var/cache/' . $this->getEnvironment();
    }