예제 #1
0
파일: Open.php 프로젝트: stevebauman/ithub
 /**
  * Opens the current inquiry.
  *
  * @return bool
  */
 public function handle()
 {
     if ($this->inquiry->isClosed()) {
         $this->inquiry->closed = false;
         return $this->inquiry->save();
     }
     return false;
 }