Esempio n. 1
0
 /**
  * 반대
  *
  * @param ItemEntity            $item   board item entity
  * @param MemberEntityInterface $author user instance
  * @param string                $option 'assent' or 'dissent'
  * @return void
  */
 public function remove(ItemEntity $item, MemberEntityInterface $author, $option)
 {
     $doc = $item->getDocument();
     $this->counter->init(self::COUNTER_NAME, $option);
     $this->counter->remove($doc->id, $author, $option);
     $count = $this->count($doc->id);
     if ($option == 'assent') {
         $doc->assentCount = $count['assent'];
     } elseif ($option == 'dissent') {
         $doc->dissentCount = $count['dissent'];
     }
     $this->document->rawPut($doc);
 }
Esempio n. 2
0
 /**
  * initialize counter
  *
  * @return void
  */
 private function init()
 {
     $this->counter->init(self::COUNTER_NAME);
 }