We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae3dd99 commit d838a6fCopy full SHA for d838a6f
1 file changed
tests/symfony/src/Kernel.php
@@ -40,6 +40,16 @@ public function getProjectDir(): string
40
return \dirname(__DIR__);
41
}
42
43
+ public function getLogDir(): string
44
+ {
45
+ $logDir = parent::getLogDir();
46
+ if (!\is_dir($logDir)) {
47
+ \mkdir($logDir, recursive: true);
48
+ }
49
+
50
+ return $logDir;
51
52
53
protected function configureContainer(ContainerConfigurator $container): void
54
{
55
$container->extension('framework', [
0 commit comments