Completed
Push — master ( 4ef642...49bb93 )
by Julien
02:53
created
lib/Elements/ReferenceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
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.