Example #1
0
 public function vote()
 {
     if (Input::exists()) {
         $post_title = Input::get('post_title');
         $type = (int) Input::get('type');
         $article = new Article();
         $article->vote($post_title, $type);
     }
 }