It is incorrect to check property by `isset()`, because it may be property with null value. The better way is replace [line 183](https://github.com/ekino/php-hal-client/blob/master/lib/Resource.php#L183) with this code: ``` php return array_key_exists($name, $this->properties); ```
It is incorrect to check property by
isset(), because it may be property with null value. The better way is replace line 183 with this code: