Pyrech\ComposerChangelogs\Config\Config::getGitlabHosts PHP Method

getGitlabHosts() public method

public getGitlabHosts ( ) : string[]
return string[]
    public function getGitlabHosts()
    {
        return $this->gitlabHosts;
    }

Usage Example

 /**
  * {@inheritdoc}
  */
 public function activate(Composer $composer, IOInterface $io)
 {
     $this->composer = $composer;
     $this->io = $io;
     $this->configLocator = new ConfigLocator($composer);
     $this->setupConfig();
     $this->autoloadNeededClasses();
     $this->outputter = Factory::createOutputter($this->config->getGitlabHosts());
 }