Completed
Branch master (a35b70)
by Tim
04:45
created
Classes/Rendering/Table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 	 * @return string
216 216
 	 */
217 217
 	protected function renderLine($columnsLengths, $specialLine = 'default', $charMode = 'Char') {
218
-		if (isset($this->tableSettings[$this->renderMode]['outer' . ucfirst($specialLine)]) && $this->tableSettings[$this->renderMode]['outer' . ucfirst($specialLine)] === FALSE) {
218
+		if (isset($this->tableSettings[$this->renderMode]['outer'.ucfirst($specialLine)]) && $this->tableSettings[$this->renderMode]['outer'.ucfirst($specialLine)] === FALSE) {
219 219
 			return FALSE;
220 220
 		}
221 221
 		$row = '';
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
 			if ($key !== 0 || $this->tableSettings[$this->renderMode]['outerLeft']) {
224 224
 				$row .= $this->tableSettings[$this->renderMode]['join'];
225 225
 			}
226
-			$row .= str_repeat($this->tableSettings[$this->renderMode]['x' . $charMode], ($this->tableSettings[$this->renderMode]['xSpace'] * 2) + $column_length);
226
+			$row .= str_repeat($this->tableSettings[$this->renderMode]['x'.$charMode], ($this->tableSettings[$this->renderMode]['xSpace'] * 2) + $column_length);
227 227
 		}
228 228
 		if ($this->tableSettings[$this->renderMode]['outerRight']) {
229 229
 			$row .= $this->tableSettings[$this->renderMode]['join'];
Please login to merge, or discard this patch.