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
without the __isset() method, $this->config->customKey resolves to null when checked with the empty() function.
For example, even if $this->config->customKey is not null, the following if statement does not pass:
if($this->config->has('customKey') && !empty($this->config->customKey)) {
// This block is not executed
}
Do you think this is the right approach? Can I send you a PR?