@@ -258,7 +258,7 @@ class Font extends AbstractStyle
258258 * @var bool
259259 * @see http://www.datypic.com/sc/ooxml/e-w_vanish-1.html
260260 */
261- private $ hiddenText = false ;
261+ private $ hidden = false ;
262262
263263 /**
264264 * Vertically Raised or Lowered Text
@@ -307,7 +307,7 @@ public function getStyleValues()
307307 'smallCaps ' => $ this ->isSmallCaps (),
308308 'allCaps ' => $ this ->isAllCaps (),
309309 'fgColor ' => $ this ->getFgColor (),
310- 'hiddenText ' => $ this ->isHiddenText (),
310+ 'hidden ' => $ this ->isHidden (),
311311 ),
312312 'spacing ' => array (
313313 'scale ' => $ this ->getScale (),
@@ -952,9 +952,9 @@ public function getParagraphStyle()
952952 *
953953 * @return bool
954954 */
955- public function isHiddenText ()
955+ public function isHidden ()
956956 {
957- return $ this ->hiddenText ;
957+ return $ this ->hidden ;
958958 }
959959
960960 /**
@@ -963,9 +963,9 @@ public function isHiddenText()
963963 * @param bool $value
964964 * @return self
965965 */
966- public function setHiddenText ($ value = true )
966+ public function setHidden ($ value = true )
967967 {
968- $ this ->hiddenText = $ this ->setBoolVal ($ value , $ this ->hiddenText );
968+ $ this ->hidden = $ this ->setBoolVal ($ value , $ this ->hidden );
969969
970970 return $ this ;
971971 }
0 commit comments