Exemplo n.º 1
0
 /**
  * @inheritdoc
  */
 public function attachCommentary(Commentary $comm)
 {
     $comm->setUuid(new \MongoId());
     array_unshift($this->commentary, $comm);
     // manage capped collection of commentaries :
     if (!is_null($this->cappComm) && count($this->commentary) > $this->cappComm) {
         array_splice($this->commentary, $this->cappComm - count($this->commentary));
     }
 }