From d4246b58d51b95178c3d79fbf009257221a8d845 Mon Sep 17 00:00:00 2001 From: hastegan Date: Thu, 15 Sep 2016 23:37:15 +0200 Subject: [PATCH] Fix PHPDoc boolean notation --- src/Spout/Writer/Style/Style.php | 4 ++-- src/Spout/Writer/Style/StyleBuilder.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Spout/Writer/Style/Style.php b/src/Spout/Writer/Style/Style.php index 43a809d..99a0b79 100644 --- a/src/Spout/Writer/Style/Style.php +++ b/src/Spout/Writer/Style/Style.php @@ -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() { diff --git a/src/Spout/Writer/Style/StyleBuilder.php b/src/Spout/Writer/Style/StyleBuilder.php index d894eb0..2676cbe 100644 --- a/src/Spout/Writer/Style/StyleBuilder.php +++ b/src/Spout/Writer/Style/StyleBuilder.php @@ -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)