We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffca2c4 commit 559cd85Copy full SHA for 559cd85
src/Granada/Granada.php
@@ -461,6 +461,7 @@ public function __isset($property)
461
if (array_key_exists($property, $this->relationships)) {
462
return true;
463
}
464
+ if ($this->orm->__isset($property)) return true;
465
466
$class = static::class;
467
$prefix_methods = ['get_', 'missing_', ''];
@@ -471,7 +472,7 @@ public function __isset($property)
471
472
473
474
- return $this->orm->__isset($property);
475
+ return false;
476
477
478
/**
0 commit comments