Skip to content

Commit e060e0b

Browse files
acasademontandig
andauthored
Fix broken tests (#167)
* fix broken tests * Fix composer validation error Co-authored-by: andig <[email protected]>
1 parent a704f14 commit e060e0b

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

Bootstraps/Symfony.php

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public function getApplication()
7070

7171
if ($this->debug) {
7272
Utils::bindAndCall(function () use ($app) {
73+
$app->boot();
7374
$container = $app->container;
7475

7576
$containerClassName = substr(strrchr(get_class($app->container), "\\"), 1);

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "php-pm/httpkernel-adapter",
3+
"description": "PHP-PM adapter for Symfony HTTPKernel.",
34
"license": "MIT",
45
"require": {
56
"php-pm/php-pm": "^2.0",

tests/Fixtures/Symfony/config/services.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ services:
1212
PHPPM\Tests\Fixtures\Symfony\Controller\:
1313
resource: '../Controller/*'
1414
tags: ['controller.service_arguments']
15+
# override the default symfony logger
16+
logger:
17+
synthetic: true
18+
public: true
1519

1620
framework:
1721
secret: foobar

0 commit comments

Comments
 (0)