You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!$this->registerErrorHandler && isset(self::ERROR_HANDLER_INTEGRATIONS[$integrationClassName])) {
60
56
continue;
61
57
}
62
58
59
+
$filteredDefaults[] = $defaultIntegration;
60
+
}
61
+
62
+
if (\is_callable($this->userConfig)) {
63
+
$result = ($this->userConfig)($filteredDefaults);
64
+
65
+
if (!\is_array($result)) {
66
+
thrownew \UnexpectedValueException(\sprintf('Expected the callable set for the user integrations to return a list of integrations. Got: "%s".', get_debug_type($result)));
0 commit comments