Eloquence\Behaviours\CamelCasing::__isset PHP Method

__isset() public method

Because we are changing the case of keys and want to use camelCase throughout the application, whenever we do isset checks we need to ensure that we check using snake_case.
public __isset ( $key ) : mixed
$key
return mixed
    public function __isset($key)
    {
        return parent::__isset($this->getSnakeKey($key));
    }