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 25c2d55 commit 3324abdCopy full SHA for 3324abd
.gitignore
@@ -7,3 +7,5 @@ php-git-hooks.yml
7
# composer.lock
8
#Entry generated by php-git-hooks tool.
9
.guard_coverage
10
+var/cache
11
+var/logs
app/AppKernel.php
@@ -19,6 +19,17 @@ public function registerBundles()
19
];
20
}
21
22
+ public function getCacheDir()
23
+ {
24
+ return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
25
+ }
26
+
27
+ public function getLogDir()
28
29
+ return dirname(__DIR__).'/var/logs';
30
31
32
33
/**
34
* Loads the container configuration.
35
*
0 commit comments