From b1d4901ed23a757a70807b555301f2018f1d7f82 Mon Sep 17 00:00:00 2001 From: Geoffrey Lee Date: Sun, 5 Jun 2016 17:51:09 -0700 Subject: [PATCH] Corrected type() method name to valueType() for Type/Collection and Type/Set in the PHP documentation. --- ext/doc/Cassandra/Type/Collection.php | 2 +- ext/doc/Cassandra/Type/Set.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/doc/Cassandra/Type/Collection.php b/ext/doc/Cassandra/Type/Collection.php index eda2a3b4a..31c345a4e 100644 --- a/ext/doc/Cassandra/Type/Collection.php +++ b/ext/doc/Cassandra/Type/Collection.php @@ -38,7 +38,7 @@ public function __toString() {} * Returns type of values * @return Type Type of values */ - public function type() {} + public function valueType() {} /** * Creates a new Cassandra\Collection from the given values. diff --git a/ext/doc/Cassandra/Type/Set.php b/ext/doc/Cassandra/Type/Set.php index 4527938ba..054f02abc 100644 --- a/ext/doc/Cassandra/Type/Set.php +++ b/ext/doc/Cassandra/Type/Set.php @@ -38,7 +38,7 @@ public function __toString() {} * Returns type of values * @return Type Type of values */ - public function type() {} + public function valueType() {} /** * Creates a new Cassandra\Set from the given values.