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
*/
public function setShouldWrapText($shouldWrap = true)
@ -280,7 +280,7 @@ class Style
}
/**
* @return boolean
* @return bool
*/
public function hasSetWrapText()
{

View File

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