Skip to content

Commit

Permalink
Check of extra data key is defined
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny van Wijk committed Jul 15, 2024
1 parent a44ead7 commit f4a5722
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function getExtraData($key)
{
$extraData = $this->domainConfiguration->getExtraData();

if ($extraData[$key]) {
if (isset($extraData[$key])) {
return $extraData[$key];
}

Expand Down

0 comments on commit f4a5722

Please sign in to comment.