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())); } }