Dotink\Parody\Quip::__unset PHP Method

__unset() public method

Handle unsetting a property
public __unset ( string $property ) : void
$property string The property to check if it is set
return void
    public function __unset($property)
    {
        if (isset($this->properties[$property])) {
            unset($this->properties[$property]);
        }
    }