container = $container; } public function injectFn(callable $fn) { $reflected = new ReflectionFunction(Closure::fromCallable($fn)); return $fn(...array_map(function (ReflectionParameter $param) { // First we try by type (more likely these days) if (($type = $param->getType()) !== null) { try { return $this->container->get($type->getName()); } catch (QueryException $ex) { // Ignore and try name as well } } // Second we try by name (mostly for primitives) try { return $this->container->get($param->getName()); } catch (QueryException $ex) { // As a last resort we pass `null` if allowed if ($type !== null && $type->allowsNull()) { return null; } // Nothing worked, time to bail out throw $ex; } }, $reflected->getParameters())); } }