Ejemplo n.º 1
0
 /**
  * @param string        $outputPath
  * @param array<string> $sourcePaths
  */
 public function __construct($outputPath, array $sourcePaths)
 {
     $this->typeCheck = TypeCheck::get(__CLASS__, func_get_args());
     parent::__construct();
     $this->setOutputPath($outputPath);
     $this->setSourcePaths($sourcePaths);
     $this->loaderPaths = array('vendor/autoload.php');
 }