0

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;
4

2 に答える 2

1

解決策を見つけました。問題は行末文字 (\r\n) でした。\n に変更した後の問題は解決しました :)

于 2013-03-21T12:57:23.133 に答える
0

これでうまくいくはずです

048      * @var integer|timestamp|string */
049      protected $created;
于 2013-03-15T10:14:10.230 に答える