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

hasList() public method

Do we have a named property, and is it a non-empty array?
public hasList ( string $propName ) : boolean
$propName string
return boolean
    public function hasList($propName)
    {
        return isset($this->{$propName}) && (is_array($this->{$propName}) && count($this->{$propName}) > 0 || is_object($this->{$propName}));
    }