Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
Merging develop to master in preparation for 2.4.0rc1.
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,6 @@ public function getParam($name)
if (isset($this->params[$name])) {
return $this->params[$name];
}
return null;
return;
}
}
6 changes: 3 additions & 3 deletions test/Cloud/CloudTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ public function testSetTagsAsItem()
$list = $cloud->getItemList();

$cloud->setTags(array(
new Tag\Item( array(
new Tag\Item(array(
'title' => 'foo',
'weight' => 1,
)),
new Tag\Item( array(
new Tag\Item(array(
'title' => 'bar',
'weight' => 2,
)),
Expand Down Expand Up @@ -225,7 +225,7 @@ public function testConstructorWithArray()

public function testConstructorWithConfig()
{
$cloud = $this->_getCloud( new \Zend\Config\Config(array(
$cloud = $this->_getCloud(new \Zend\Config\Config(array(
'tags' => array(
array(
'title' => 'foo',
Expand Down

0 comments on commit f415ff0

Please sign in to comment.