Dotink\Parody\Quip::__isset PHP Метод

__isset() публичный Метод

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