[FIXED] Wrong use of passing by reference.

This commit is contained in:
Roman Syroeshko 2014-07-04 12:13:11 +04:00
parent 8056b6926c
commit 4a02142d63

View File

@ -133,7 +133,7 @@ abstract class AbstractElement
*/ */
public function setPhpWord(PhpWord &$phpWord = null) public function setPhpWord(PhpWord &$phpWord = null)
{ {
$this->phpWord = &$phpWord; $this->phpWord = $phpWord;
} }
/** /**