Fix boolean notation in PHPDoc (#314)
This commit is contained in:
parent
ddb7365a79
commit
30aa1b87e2
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user