Exemplo n.º 1
0
 public function actionAdd()
 {
     $entity = Yii::$app->request->post('entity');
     $id = (int) Yii::$app->request->post('id');
     $vote = (int) Yii::$app->request->post('vote');
     return json_encode(Vote::addVote($entity, $id, $vote));
 }