Skip to content

Commit

Permalink
#356 : PowerPoint2007 Writer : Implement visibility for axis
Browse files Browse the repository at this point in the history
  • Loading branch information
Progi1984 committed May 20, 2017
1 parent a5a2707 commit f48da01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhpPresentation/Shape/Chart/Axis.php
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ public function isVisible()
*/
public function setIsVisible($value)
{
$this->isVisible = boolval($value);
$this->isVisible = (bool)$value;
return $this;
}
}

0 comments on commit f48da01

Please sign in to comment.