Sokil\Mongo\Collection\Definition::getOption PHP 메소드

getOption() 공개 메소드

public getOption ( $name )
    public function getOption($name)
    {
        if (property_exists($this, $name)) {
            return $this->{$name};
        }
        return isset($this->options[$name]) ? $this->options[$name] : null;
    }