Example #1
0
 /**
  * Get the vector clock returned with this response.
  *
  * @return \Riak\Client\Core\Query\VClock
  */
 public function getVectorClock()
 {
     if ($this->values->isEmpty()) {
         return;
     }
     $first = $this->values->first();
     $vclock = $first->getVClock();
     return $vclock;
 }