DataSift\Storyplayer\PlayerLib\Story_Checkpoint::isNot PHP 메소드

isNot() 공개 메소드

is the named property set to false?
public isNot ( string $propName ) : boolean
$propName string
리턴 boolean
    public function isNot($propName)
    {
        return !isset($this->{$propName}) || $this->{$propName} != true;
    }