コード例 #1
0
 /**
  * Template method. Main algorithm
  *
  * {@inheritdoc}
  */
 public function build(array $options)
 {
     $this->checkOptions($options);
     $this->options = $options;
     $config = $this->buildData($this->dependenciesParser->parse($options['parse']));
     $this->reportWriter->write($options['write'], $config);
 }
コード例 #2
0
ファイル: Builder.php プロジェクト: andrewhowdencom/m2onk8s
 /**
  * Get allowed modules
  *
  * @return array
  */
 protected function getAllowedModules()
 {
     return $this->configParser->parse(['files_for_parse' => $this->options['parse']['config_files']]);
 }