Sylius\Bundle\CoreBundle\Application\Kernel::getCacheDir PHP Method

getCacheDir() public method

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