@@ -49,7 +49,7 @@ |
||
49 | 49 | return $this->reference; |
50 | 50 | } |
51 | 51 | |
52 | - public function setValueToElement(\DOMElement &$el, \DOMDocument $doc = null) |
|
52 | + public function setValueToElement(\DOMElement&$el, \DOMDocument $doc = null) |
|
53 | 53 | { |
54 | 54 | $el->setAttribute('ID', $this->getReference()); |
55 | 55 | } |
@@ -91,11 +91,11 @@ |
||
91 | 91 | { |
92 | 92 | $el = $this->createElement($doc); |
93 | 93 | |
94 | - if (! $this->getThead()->isEmpty()) { |
|
94 | + if (!$this->getThead()->isEmpty()) { |
|
95 | 95 | $el->appendChild($this->getThead()->toDOMElement($doc)); |
96 | 96 | } |
97 | 97 | |
98 | - if (! $this->getTbody()->isEmpty()) { |
|
98 | + if (!$this->getTbody()->isEmpty()) { |
|
99 | 99 | $el->appendChild($this->getTbody()->toDOMElement($doc)); |
100 | 100 | } |
101 | 101 |
@@ -125,7 +125,7 @@ |
||
125 | 125 | { |
126 | 126 | $el = $this->createElement($doc); |
127 | 127 | |
128 | - foreach($this->getRows() as $row) { |
|
128 | + foreach ($this->getRows() as $row) { |
|
129 | 129 | $el->appendChild($row->toDOMElement($doc)); |
130 | 130 | } |
131 | 131 |