Skip to content
Snippets Groups Projects
Commit d1e8daa8 authored by Tim Bozeman's avatar Tim Bozeman
Browse files

Issue #3456871 by Tim Bozeman: Support NULL services

parent 0a469bce
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ public function getId(object $service): ?string {
*/
public function recordContainer(): void {
$service_recorder = \Closure::bind(function () : array {
return $this->services;
return array_filter($this->services);
}, $this->serviceContainer, $this->serviceContainer);
self::$recordedServices = array_merge(self::$recordedServices, array_flip(array_map([$this, 'generateServiceIdHash'], $service_recorder())));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment