我尝试在TYPO3 9.5.7中使用pits_downloadcenter扩展,并在尝试查看前端页面时收到以下错误:
Doctrine \ Common \ Annotations \ AnnotationException [语义错误] 方法中的注释“ @void” PITS \ PitsDownloadcenter \ Controller \ DownloadController :: forceDownloadAction() 从来没有进口过。您是否忘记为以下项添加“使用”语句? 这个注释?
答案 0 :(得分:1)
我向扩展程序添加了拉取请求,可以在以下位置找到该请求:https://github.com/hojaonline/pits_downloadcenter/pull/23/files
更改非常容易
--- a/Classes/Controller/DownloadController.php
+++ b/Classes/Controller/DownloadController.php
@@ -185,7 +185,7 @@ public function showAction()
* force download file
* by decrypting the file uid
*
- * @void
+ * @return void
*/
public function forceDownloadAction()
{