DataSift\Storyplayer\PlayerLib\Story_Checkpoint::__isset PHP Method

__isset() public method

magic method to tell if the data is stored in the checkpoint or not
public __isset ( string $key ) : boolean
$key string the name of the data to test for
return boolean TRUE if the data exists in the checkpoint FALSE if the data does not exist in the checkpoint
    public function __isset($key)
    {
        return isset($this->data[$key]);
    }