public function getConfig(&$config)
 {
     if ($this->namespace !== null) {
         $config['namespace'] = $this->namespace;
     }
     return parent::getConfig($config);
 }
 public function getConfig(&$config)
 {
     if ($this->namespace !== null) {
         $config['namespace'] = $this->namespace;
     }
     if ($this->relative !== null) {
         $config['relative'] = $this->relative;
     }
     if ($this->suggestions !== null) {
         $config['suggestions'] = $this->suggestions;
     }
     return parent::getConfig($config);
 }
Example #3
0
 public function getConfig(&$config)
 {
     if ($this->namespace !== null) {
         $config['namespace'] = $this->namespace;
     }
     if ($this->relative !== null) {
         $config['relative'] = $this->relative;
     }
     if ($this->suggestions !== null) {
         $config['suggestions'] = $this->suggestions;
     }
     if ($this->highlightFirst !== null) {
         $config['highlightFirst'] = $this->highlightFirst;
     }
     if ($this->validateTitle !== null) {
         $config['validateTitle'] = $this->validateTitle;
     }
     return parent::getConfig($config);
 }