문제

have you ever met with such a problem?:

Jenkins report says that at the end of line 49 there are some white spaces but I checked code in repository and definitely end of comment is end of line:

048      * @var integer|timestamp|string
049      */
050     protected $created;
도움이 되었습니까?

해결책

I found the solution. The problem was the end of line character (\r\n), after changing to \n problem solved :)

다른 팁

This should do the trick

048      * @var integer|timestamp|string */
049      protected $created;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top