Habari\Bitmask::__isset PHP Method

__isset() public method

Magic check-whether-flag-exists method
public __isset ( string $flag ) : boolean
$flag string of flag name
return boolean
    public function __isset($flag)
    {
        return $flag === 'full' || $flag === 'value' || in_array($flag, $this->flags);
    }