Replace remaining occurrences of "boolean" with "bool" in phpdocs.

[ci skip]
This commit is contained in:
Daniele Alessandri
2013-12-21 12:48:43 +01:00
parent c127d02e92
commit b73606de68
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ class Autoloader
/**
* Registers the autoloader class with the PHP SPL autoloader.
*
* @param boolean $prepend Prepend the autoloader on the stack instead of appending it.
* @param bool $prepend Prepend the autoloader on the stack instead of appending it.
*/
public static function register($prepend = false)
{
+1 -1
View File
@@ -95,7 +95,7 @@ class HashRing implements DistributorInterface, HashGeneratorInterface
/**
* Returns the initialization status of the distributor.
*
* @return Boolean
* @return bool
*/
private function isInitialized()
{
+2 -2
View File
@@ -348,8 +348,8 @@ class PredisStrategy implements StrategyInterface
/**
* Checks if the specified array of keys will generate the same hash.
*
* @param array $keys Array of keys.
* @return Boolean
* @param array $keys Array of keys.
* @return bool
*/
protected function checkSameHashForKeys(array $keys)
{
+1 -1
View File
@@ -70,7 +70,7 @@ class ZSetRange extends Command
/**
* Checks for the presence of the WITHSCORES modifier.
*
* @return Boolean
* @return bool
*/
protected function withScores()
{
+1 -1
View File
@@ -52,7 +52,7 @@ abstract class CommunicationException extends PredisException
/**
* Indicates if the receiver should reset the underlying connection.
*
* @return Boolean
* @return bool
*/
public function shouldResetConnection()
{