Skip to content

Commit cb16229

Browse files
committed
Missed a Period
1 parent 21fc5ab commit cb16229

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/PhpWord/Writer/RTF/Element/Table.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ private function writeCellStyle(CellStyle $cell, ?TableStyle $table): string
178178
const MAP_BORDER_TYPE = [
179179
Border::DOTTED => '\brdrdot',
180180
];
181+
181182
private function writeCellBorder(string $prefix, ?string $borderStyle, int $borderSize, ?string $borderColor): string
182183
{
183184
if ($borderSize == 0) {
@@ -214,7 +215,7 @@ private function writeCellBorder(string $prefix, ?string $borderStyle, int $bord
214215
* \brdremboss Emboss border.
215216
* \brdrengrave Engrave border.
216217
*/
217-
$content = self::MAP_BORDER_TYPE[$borderStyle] ?? '\brdrs';
218+
$content .= self::MAP_BORDER_TYPE[$borderStyle] ?? '\brdrs';
218219

219220
// \brdrwN N is the width in twips (1/20 pt) of the pen used to draw the paragraph border line.
220221
// N cannot be greater than 75.

0 commit comments

Comments
 (0)