コード例 #1
0
ファイル: flightservice.php プロジェクト: jbrew8/pilotlogbook
 public function update($flightArray)
 {
     $flight = Flight::fromArray($flightArray);
     try {
         return $this->mapper->update($flight);
     } catch (Exception $e) {
         $this->handleException($e);
     }
 }