/**
  * @param FormatterInterface $formatter
  * @param string           $workDir
  */
 public function postCompileModels(FormatterInterface $formatter, $workDir)
 {
     $compiler = new Compiler($formatter, $workDir);
     $compiler->postCompileModels();
 }
 /**
  * @param FormatterInterface $formatter
  * @param Document $document
  */
 public function postCompileModels(FormatterInterface $formatter, Document $document)
 {
     $compiler = new Compiler($formatter, $document);
     $compiler->postCompileModels();
 }