We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a05dba commit 198c9a7Copy full SHA for 198c9a7
1 file changed
src/Entity/HostedEntities.php
@@ -63,7 +63,9 @@ public function getIdentityProvider(): ?IdentityProvider
63
return $this->identityProvider;
64
}
65
66
- if (!array_key_exists('enabled', $this->identityProviderConfiguration)) {
+ if (is_null($this->identityProviderConfiguration) ||
67
+ !array_key_exists('enabled', $this->identityProviderConfiguration)
68
+ ) {
69
return null;
70
71
0 commit comments