Fix: of of => of

This commit is contained in:
Max 2023-02-20 00:19:56 +03:00 committed by Ivan Fedorov
parent e3045ea75d
commit 735d07ca3a
1 changed files with 12 additions and 12 deletions

View File

@ -832,7 +832,7 @@ namespace Cassandra {
/**
* Returns the partition key columns of the table
*
* @return array A list of of Column instances
* @return array A list of Column instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/interface.Table/#method-partitionKey
*/
public function partitionKey();
@ -840,7 +840,7 @@ namespace Cassandra {
/**
* Returns both the partition and clustering key columns of the table
*
* @return array A list of of Column instances
* @return array A list of Column instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/interface.Table/#method-primaryKey
*/
public function primaryKey();
@ -848,7 +848,7 @@ namespace Cassandra {
/**
* Returns the clustering key columns of the table
*
* @return array A list of of Column instances
* @return array A list of Column instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/interface.Table/#method-clusteringKey
*/
public function clusteringKey();
@ -2399,7 +2399,7 @@ namespace Cassandra {
/**
* Returns the partition key columns of the view
*
* @return array A list of of Column instances
* @return array A list of Column instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/class.DefaultMaterializedView/#method-partitionKey
*/
public function partitionKey() {}
@ -2407,7 +2407,7 @@ namespace Cassandra {
/**
* Returns both the partition and clustering key columns of the view
*
* @return array A list of of Column instances
* @return array A list of Column instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/class.DefaultMaterializedView/#method-primaryKey
*/
public function primaryKey() {}
@ -2415,7 +2415,7 @@ namespace Cassandra {
/**
* Returns the clustering key columns of the view
*
* @return array A list of of Column instances
* @return array A list of Column instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/class.DefaultMaterializedView/#method-clusteringKey
*/
public function clusteringKey() {}
@ -3425,7 +3425,7 @@ namespace Cassandra {
/**
* Returns the partition key columns of the view
*
* @return array A list of of `Column` instances
* @return array A list of `Column` instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/class.MaterializedView/#method-partitionKey
*/
abstract public function partitionKey();
@ -3433,7 +3433,7 @@ namespace Cassandra {
/**
* Returns both the partition and clustering key columns of the view
*
* @return array A list of of `Column` instances
* @return array A list of `Column` instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/class.MaterializedView/#method-primaryKey
*/
abstract public function primaryKey();
@ -3441,7 +3441,7 @@ namespace Cassandra {
/**
* Returns the clustering key columns of the view
*
* @return array A list of of `Column` instances
* @return array A list of `Column` instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/class.MaterializedView/#method-clusteringKey
*/
abstract public function clusteringKey();
@ -4834,7 +4834,7 @@ namespace Cassandra {
/**
* Returns the partition key columns of the table
*
* @return array A list of of `Column` instance
* @return array A list of `Column` instance
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/class.DefaultTable/#method-partitionKey
*/
public function partitionKey() {}
@ -4842,7 +4842,7 @@ namespace Cassandra {
/**
* Returns both the partition and clustering key columns of the table
*
* @return array A list of of `Column` instance
* @return array A list of `Column` instance
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/class.DefaultTable/#method-primaryKey
*/
public function primaryKey() {}
@ -4850,7 +4850,7 @@ namespace Cassandra {
/**
* Returns the clustering key columns of the table
*
* @return array A list of of `Column` instances
* @return array A list of `Column` instances
* @link https://docs.datastax.com/en/developer/php-driver/latest/api/Cassandra/class.DefaultTable/#method-clusteringKey
*/
public function clusteringKey() {}