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

is() 공개 메소드

Is the named property set to true?
public is ( string $propName ) : boolean
$propName string
리턴 boolean
    public function is($propName)
    {
        return isset($this->{$propName}) && $this->{$propName};
    }