コード例 #1
0
 /**
  * Mark Url as done
  */
 public function done(Url &$url)
 {
     $url->refreshUpdatedAt();
     $this->getMongoCollection()->findAndModify(['_id' => $url->getId()], ['$set' => ['url' => $url->toArray(), 'processing' => false]]);
 }