InfyOm\Generator\Common\GeneratorConfig::getOption PHP Method

getOption() public method

public getOption ( $option )
    public function getOption($option)
    {
        if (isset($this->options[$option])) {
            return $this->options[$option];
        }
        return false;
    }

Usage Example

 public function getOption($option)
 {
     return $this->config->getOption($option);
 }