[FIXED] Wrong use of passing by reference.
This commit is contained in:
parent
8056b6926c
commit
4a02142d63
|
|
@ -133,7 +133,7 @@ abstract class AbstractElement
|
|||
*/
|
||||
public function setPhpWord(PhpWord &$phpWord = null)
|
||||
{
|
||||
$this->phpWord = &$phpWord;
|
||||
$this->phpWord = $phpWord;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue