[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
1 changed files with 1 additions and 1 deletions

View File

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