コード例 #1
0
 /**
  * Process the requested action
  *
  * @return integer
  */
 public function suspend(array $input)
 {
     if (!$this->valid($input)) {
         return false;
     }
     return $this->user->suspend($input['id'], $input['minutes']);
 }