Skip to content

Commit 160f6e8

Browse files
committed
Fixes #2
1 parent 06eb781 commit 160f6e8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/DI/Bridge/Symfony/SymfonyContainerBridge.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use DI\ContainerInterface;
1313
use DI\NotFoundException;
1414
use Symfony\Component\DependencyInjection\Container as SymfonyContainer;
15+
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
1516
use Symfony\Component\DependencyInjection\ContainerInterface as SymfonyContainerInterface;
1617
use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;
1718

@@ -76,7 +77,14 @@ public function get($id, $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE
7677
}
7778

7879
try {
79-
return $this->fallbackContainer->get($id);
80+
$entry = $this->fallbackContainer->get($id);
81+
82+
// Stupid hack for Symfony's ContainerAwareInterface
83+
if ($entry instanceof ContainerAwareInterface) {
84+
$entry->setContainer($this);
85+
}
86+
87+
return $entry;
8088
} catch (NotFoundException $e) {
8189
if ($invalidBehavior === self::EXCEPTION_ON_INVALID_REFERENCE) {
8290
throw new ServiceNotFoundException($id);

0 commit comments

Comments
 (0)