erp = $app->erp; } /** * @param $dateiId * * @return string|string[]|null */ public function tryGetDateiPfad($dateiId) { if (!is_numeric($dateiId)) { throw new DemoExporterDateiException('DateiId is missing! '); } return $this->erp->GetDateiPfad($dateiId); } /** * @return string|string[] */ public function getTmpPath() { return $this->erp->GetTMP(); } }