We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1580113 commit 54af93aCopy full SHA for 54af93a
src/PhpWord/Style/Line.php
@@ -117,7 +117,7 @@ public function setFlip($value = null)
117
*
118
* @return boolean
119
*/
120
- public function getFlip()
+ public function isFlip()
121
{
122
return $this->flip;
123
}
src/PhpWord/Writer/Word2007/Style/Line.php
@@ -124,13 +124,17 @@ private function getElementStyle(LineStyle $style)
124
$styles[$key] = $value . 'px';
125
126
127
- if ($style->getFlip()) {
+ if ($style->isFlip()) {
128
$styles['flip']='y';
129
130
131
return $styles;
132
133
134
+ /**
135
+ * Write Line stroke
136
+ *
137
+ */
138
public function writeStroke()
139
140
$style = $this->getStyle();
0 commit comments