Example #1
0
 /**
  * Set whether to return the index keys with the Riak object keys.
  * Setting this to true will return both the index key and the Riak
  * object's key. The default is false (only to return the Riak object keys).
  *
  * @param boolean $returnTerms
  *
  * @return \Riak\Client\Command\Index\Builder\Builder
  */
 public function withReturnTerms($returnTerms)
 {
     $this->query->setReturnTerms($returnTerms);
     return $this;
 }