lithium\data\Entity::__isset PHP Method

__isset() public method

Overloading for calling isset() or empty() on inaccessible properties.
public __isset ( string $name ) : mixed
$name string Property name.
return mixed Result.
    public function __isset($name)
    {
        return isset($this->_updated[$name]) || isset($this->_relationships[$name]);
    }