-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Mutable creation options aware trait #6175
Mutable creation options aware trait #6175
Conversation
* added unit test for MutableCreationOptionsAwareTrait
Build fails for PHP 5.3 because Traits are PHP >= 5.4 |
@demichl68 Add |
added requires annotation
done, thank you |
/** | ||
* @requires PHP 5.4 | ||
* @group Zend_ServiceManager | ||
* / |
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.
That space between *
and /
is causing Travis fail :)
removed trailing space in docblock
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) |
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.
2014
changed copyright information to 2014
I apologize for the inconvenience, but the build is failing in relation to #6180. Rebasing onto |
@demichl68 can you check the failures on travis? Specifically PHP 5.3 - I think the |
use PHPUnit_Framework_TestCase as TestCase; | ||
|
||
/** | ||
* @requires PHP 5.4 |
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.
5.4.0
@demichl68 the |
Let's give it another try ... |
Seems like every build within the last couple of days fails, because of:
|
@demichl68 aware of that - not a big deal, I'll merge this right away |
/** | ||
* Trait for MutableCreationOptionsAware Factories | ||
*/ | ||
trait MutableCreationOptionsAwareTrait |
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.
Can you actually remove the Aware
bit?
* Removed leading \ from Zend namespace in unit test * Removed @group annotation from unit test
@demichl68 merged, thanks :) |
Relates to #6174