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