Fix PHPDoc boolean notation

This commit is contained in:
hastegan 2016-09-15 23:37:15 +02:00
parent b730bebcb8
commit d4246b58d5
2 changed files with 3 additions and 3 deletions

View File

@ -269,7 +269,7 @@ class Style
} }
/** /**
* @param boolean $shouldWrap Should the text be wrapped * @param bool $shouldWrap Should the text be wrapped
* @return Style * @return Style
*/ */
public function setShouldWrapText($shouldWrap = true) public function setShouldWrapText($shouldWrap = true)
@ -280,7 +280,7 @@ class Style
} }
/** /**
* @return boolean * @return bool
*/ */
public function hasSetWrapText() public function hasSetWrapText()
{ {

View File

@ -112,7 +112,7 @@ class StyleBuilder
* Makes the text wrap in the cell if requested * Makes the text wrap in the cell if requested
* *
* @api * @api
* @param boolean $shouldWrap Should the text be wrapped * @param bool $shouldWrap Should the text be wrapped
* @return StyleBuilder * @return StyleBuilder
*/ */
public function setShouldWrapText($shouldWrap = true) public function setShouldWrapText($shouldWrap = true)