-
Notifications
You must be signed in to change notification settings - Fork 111
fix regression: MessageId having double brackets #156
Conversation
test/Header/MessageIdTest.php
Outdated
@@ -14,7 +14,7 @@ | |||
|
|||
/** | |||
* @group Zend_Mail | |||
* @covers Zend\Mail\Header\MessageId<extended> | |||
* @covers \Zend\Mail\Header\MessageId<extended> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for @Covers, already correct without \
prefix, revert it imo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe @covers
does need \
prefix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added it because phpstorm did not complete the class otherwise
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@asgrim no, @Covers doesn't need it, I use it in my tests without \
https://github.com/samsonasik/SanSessionToolbar/blob/master/test/Factory/Controller/SessionToolbarControllerFactoryTest.php#L81-L82 and it detect correctly
test/Storage/MessageTest.php
Outdated
@@ -20,7 +20,7 @@ | |||
|
|||
/** | |||
* @group Zend_Mail | |||
* @covers Zend\Mail\Storage\Message<extended> | |||
* @covers \Zend\Mail\Storage\Message<extended> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for @Covers, already correct without \
prefix, revert it imo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added it for ide (phpstorm) to be able to resolve class
529dd85
to
6e17e96
Compare
this got broken from pull/86 when header lazyloading was omitted
6e17e96
to
f1cb350
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
this got broken from #86 when header lazyloading was omitted