Phpdoc No Summary found for this file

后端 未结 7 1031
轮回少年
轮回少年 2021-01-11 12:09

I\'ve installed phpDoc on our server, set up etc. It\'s producing documentation correctly. We\'re using the \'Responsive\' template, however this error occurs regardless of

7条回答
  •  爱一瞬间的悲伤
    2021-01-11 12:16

    I came accross this issue when my site works with php v7.4 while phpDocumentor.phar is started with php v7.2.5 and there where strong typed properties in my class. Strong typed properties aren't allowed before php v7.4.0.

    class Template
    {
        /**
        * @var  string  The template with some replacement strings 
        */
        private string $template; 
    
    
      ....
    

提交回复
热议问题