Fix boolean notation in PHPDoc

This commit is contained in:
hastegan 2016-09-16 23:58:46 +02:00
parent ddb7365a79
commit dc77c1abca
7 changed files with 12 additions and 12 deletions

View File

@ -106,7 +106,7 @@ class RowIterator implements IteratorInterface
* Checks if current position is valid * Checks if current position is valid
* @link http://php.net/manual/en/iterator.valid.php * @link http://php.net/manual/en/iterator.valid.php
* *
* @return boolean * @return bool
*/ */
public function valid() public function valid()
{ {

View File

@ -45,7 +45,7 @@ class SheetIterator implements IteratorInterface
* Checks if current position is valid * Checks if current position is valid
* @link http://php.net/manual/en/iterator.valid.php * @link http://php.net/manual/en/iterator.valid.php
* *
* @return boolean * @return bool
*/ */
public function valid() public function valid()
{ {

View File

@ -82,7 +82,7 @@ class RowIterator implements IteratorInterface
* Checks if current position is valid * Checks if current position is valid
* @link http://php.net/manual/en/iterator.valid.php * @link http://php.net/manual/en/iterator.valid.php
* *
* @return boolean * @return bool
*/ */
public function valid() public function valid()
{ {

View File

@ -83,7 +83,7 @@ class SheetIterator implements IteratorInterface
* Checks if current position is valid * Checks if current position is valid
* @link http://php.net/manual/en/iterator.valid.php * @link http://php.net/manual/en/iterator.valid.php
* *
* @return boolean * @return bool
*/ */
public function valid() public function valid()
{ {

View File

@ -115,7 +115,7 @@ class RowIterator implements IteratorInterface
* Checks if current position is valid * Checks if current position is valid
* @link http://php.net/manual/en/iterator.valid.php * @link http://php.net/manual/en/iterator.valid.php
* *
* @return boolean * @return bool
*/ */
public function valid() public function valid()
{ {

View File

@ -53,7 +53,7 @@ class SheetIterator implements IteratorInterface
* Checks if current position is valid * Checks if current position is valid
* @link http://php.net/manual/en/iterator.valid.php * @link http://php.net/manual/en/iterator.valid.php
* *
* @return boolean * @return bool
*/ */
public function valid() public function valid()
{ {

View File

@ -115,7 +115,7 @@ class Style
} }
/** /**
* @return boolean * @return bool
*/ */
public function shouldApplyBorder() public function shouldApplyBorder()
{ {
@ -123,7 +123,7 @@ class Style
} }
/** /**
* @return boolean * @return bool
*/ */
public function isFontBold() public function isFontBold()
{ {
@ -142,7 +142,7 @@ class Style
} }
/** /**
* @return boolean * @return bool
*/ */
public function isFontItalic() public function isFontItalic()
{ {
@ -161,7 +161,7 @@ class Style
} }
/** /**
* @return boolean * @return bool
*/ */
public function isFontUnderline() public function isFontUnderline()
{ {
@ -180,7 +180,7 @@ class Style
} }
/** /**
* @return boolean * @return bool
*/ */
public function isFontStrikethrough() public function isFontStrikethrough()
{ {
@ -261,7 +261,7 @@ class Style
} }
/** /**
* @return boolean * @return bool
*/ */
public function shouldWrapText() public function shouldWrapText()
{ {