We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7be8b3f commit 4f89612Copy full SHA for 4f89612
configuration/micro_kernel_trait.rst
@@ -199,13 +199,13 @@ to hold the kernel. Now it looks like this::
199
// optional, to use the standard Symfony cache directory
200
public function getCacheDir()
201
{
202
- return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
+ return __DIR__.'/../var/cache/'.$this->getEnvironment();
203
}
204
205
// optional, to use the standard Symfony logs directory
206
public function getLogDir()
207
208
- return dirname(__DIR__).'/var/logs';
+ return __DIR__.'/../var/logs';
209
210
211
0 commit comments