@@ -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 | |