Dotink\Parody\Quip::__isset PHP Method

__isset() public method

Handle checking whether or not properties are set
public __isset ( string $property ) : boolean
$property string The property to check if it is set
return boolean TRUE if the mimicked property is set, FALSE otherwise
    public function __isset($property)
    {
        return isset($this->properties[$property]);
    }