/**
  * Class constructor
  * @param string $filePrefix the prefix for combined files
  * @param PathResolver $pathResolver path resolver
  */
 public function __construct($filePrefix, PathResolver $pathResolver)
 {
     $this->filePrefix = $filePrefix;
     $this->pathResolver = $pathResolver;
     parent::__construct();
 }