Ejemplo n.º 1
0
 public function hint(array $keyPattern)
 {
     $this->log(array('hint' => true, 'keyPattern' => $keyPattern));
     return parent::hint($keyPattern);
 }
Ejemplo n.º 2
0
 /**
  * @see Cursor::hint()
  */
 public function hint($keyPattern)
 {
     $this->log(['hint' => true, 'keyPattern' => $keyPattern]);
     return parent::hint($keyPattern);
 }
Ejemplo n.º 3
0
 /**
  * {@inheritdoc}
  */
 public function hint($keyPattern)
 {
     $this->cursor->hint($keyPattern);
     return $this;
 }