Skip to content

Commit

Permalink
Remove wrong return
Browse files Browse the repository at this point in the history
  • Loading branch information
GromNaN committed Mar 13, 2013
1 parent 17e3ebd commit 010bb0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Welldom/XsltProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function getParameter($name)
*/
public function setParameter($name, $value)
{
return $this->processor->setParameter('', $name, $value);
$this->processor->setParameter('', $name, $value);

return $this;
}
Expand Down

0 comments on commit 010bb0d

Please sign in to comment.