File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ Changelog
4
4
5.x
5
5
===
6
6
7
+ 5.0.2
8
+ -----
9
+
10
+ * Fixed regression in ` TestKernel ` .
11
+
7
12
5.0.1
8
13
-----
9
14
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ public function getCacheDir(): string
179
179
public function getLogDir (): string
180
180
{
181
181
return implode ('/ ' , [
182
- $ this ->getKernelDir (),
182
+ $ this ->getProjectDir (),
183
183
'var ' ,
184
184
'logs ' ,
185
185
]);
@@ -190,7 +190,7 @@ public function getLogDir(): string
190
190
*/
191
191
protected function registerConfiguredBundles (): void
192
192
{
193
- $ bundleFilePath = $ this ->getKernelDir ().'/config/bundles.php ' ;
193
+ $ bundleFilePath = $ this ->getProjectDir ().'/config/bundles.php ' ;
194
194
if (!file_exists ($ bundleFilePath )) {
195
195
return ;
196
196
}
@@ -213,8 +213,8 @@ protected function registerConfiguredBundles(): void
213
213
protected function build (ContainerBuilder $ container ): void
214
214
{
215
215
parent ::build ($ container );
216
- if (\in_array ($ this ->getEnvironment (), ['test ' , 'phpcr ' ]) && file_exists ($ this ->getKernelDir ().'/config/public_services.php ' )) {
217
- $ services = require $ this ->getKernelDir ().'/config/public_services.php ' ;
216
+ if (\in_array ($ this ->getEnvironment (), ['test ' , 'phpcr ' ]) && file_exists ($ this ->getProjectDir ().'/config/public_services.php ' )) {
217
+ $ services = require $ this ->getProjectDir ().'/config/public_services.php ' ;
218
218
$ container ->addCompilerPass (new TestContainerPass ($ services ), PassConfig::TYPE_OPTIMIZE );
219
219
}
220
220
}
You can’t perform that action at this time.
0 commit comments