Skip to content

Commit 831c1bc

Browse files
committed
FIX: code style
1 parent 9ba0fa7 commit 831c1bc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/PhpWord/Reader/Word2007/AbstractPart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ private function readCellStyle(XMLReader $xmlReader, DOMElement $domNode)
560560
'gridSpan' => [self::READ_VALUE, 'w:gridSpan'],
561561
'vMerge' => [self::READ_VALUE, 'w:vMerge', null, null, 'continue'],
562562
'bgColor' => [self::READ_VALUE, 'w:shd', 'w:fill'],
563-
'noWrap' => [self::READ_VALUE, 'w:noWrap', null, null, true]
563+
'noWrap' => [self::READ_VALUE, 'w:noWrap', null, null, true],
564564
];
565565

566566
return $this->readStyleDefs($xmlReader, $domNode, $styleDefs);

src/PhpWord/Style/Cell.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class Cell extends Border
119119
private $unit = TblWidth::TWIP;
120120

121121
/**
122-
* Prevent text from wrapping in the cell
122+
* Prevent text from wrapping in the cell.
123123
*
124124
* @var bool
125125
*/
@@ -321,7 +321,7 @@ public function setUnit($value)
321321
}
322322

323323
/**
324-
* Set noWrap
324+
* Set noWrap.
325325
*
326326
* @param $value
327327
*/
@@ -333,7 +333,7 @@ public function setNoWrap($value)
333333
}
334334

335335
/**
336-
* Get noWrap
336+
* Get noWrap.
337337
*
338338
* @return bool
339339
*/

0 commit comments

Comments
 (0)