Skip to content

Commit

Permalink
Merge branch '1.0.x' into 1.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyennv committed Jun 12, 2018
2 parents 06ff868 + b2d9d64 commit f3076e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"phpcollection/phpcollection": "0.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/phpunit": "~4.8",
"fzaninotto/faker": "~v1.5.0"
},
"autoload": {
Expand Down
1 change: 1 addition & 0 deletions src/Zimbra/Common/TypedMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class TypedMap extends Map
*/
public function __construct($type, array $elements = [])
{
parent::__construct();
$this->_type = $type;
$this->setAll($elements);
}
Expand Down
1 change: 1 addition & 0 deletions src/Zimbra/Common/TypedSequence.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class TypedSequence extends Sequence
*/
public function __construct($type, array $elements = [])
{
parent::__construct();
$this->_type = $type;
$this->addAll($elements);
}
Expand Down

0 comments on commit f3076e3

Please sign in to comment.