Eloquence\Behaviours\CamelCasing::__isset PHP Метод

__isset() публичный Метод

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
Результат mixed
    public function __isset($key)
    {
        return parent::__isset($this->getSnakeKey($key));
    }