Completed
Push — master ( 49bb93...ac8feb )
by Julien
02:08
created
lib/Elements/Table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,11 +91,11 @@
 block discarded – undo
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
         
Please login to merge, or discard this patch.
lib/Elements/AbstractTableSection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
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
         
Please login to merge, or discard this patch.