예제 #1
-1
 /**
  * Create new instance
  *
  * @param PhpWord $phpWord PhpWord object
  * @throws \PhpOffice\PhpWord\Exception\Exception
  */
 public function __construct(PhpWord $phpWord)
 {
     parent::__construct($phpWord);
     $includeFile = Settings::getPdfRendererPath() . '/' . $this->includeFile;
     if (file_exists($includeFile)) {
         /** @noinspection PhpIncludeInspection Dynamic includes */
         require_once $includeFile;
     } else {
         // @codeCoverageIgnoreStart
         // Can't find any test case. Uncomment when found.
         throw new Exception('Unable to load PDF Rendering library');
         // @codeCoverageIgnoreEnd
     }
 }
예제 #2
-1
 /**
  * Create new instance
  *
  * @param PhpWord $phpWord PhpWord object
  */
 public function __construct(PhpWord $phpWord)
 {
     parent::__construct($phpWord);
 }