Skip to content

Commit

Permalink
Fix case with _instanceof service definitions (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeev committed Apr 17, 2024
1 parent f9ae7c2 commit 09f8ba3
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public function process(ContainerBuilder $container)
$services = [];

foreach ($container->getDefinitions() as $id => $definition) {
if (strpos($id, '.abstract.instanceof.') === 0) {
continue;
}
$services[$id] = $definition->getClass();
}

Expand Down

0 comments on commit 09f8ba3

Please sign in to comment.