toArray(); $params = [ ':weekDayId' => $weekDayId, ':startTime' => $data['startTime'], ':endTime' => $data['endTime'] ]; try { $statement = $this->connection->prepare( "INSERT INTO {$this->table} (`weekDayId`, `startTime`, `endTime`) VALUES (:weekDayId, :startTime, :endTime)" ); $res = $statement->execute($params); if (!$res) { throw new QueryExecutionException('Unable to add data in ' . __CLASS__); } } catch (\Exception $e) { throw new QueryExecutionException('Unable to add data in ' . __CLASS__); } return $this->connection->lastInsertId(); } /** * @param Period $entity * @param int $id * * @return int * @throws QueryExecutionException */ public function update($entity, $id) { $data = $entity->toArray(); $params = [ ':id' => $id, ':startTime' => $data['startTime'], ':endTime' => $data['endTime'] ]; try { $statement = $this->connection->prepare( "UPDATE {$this->table} SET `startTime` = :startTime, `endTime` = :endTime WHERE id = :id" ); $res = $statement->execute($params); if (!$res) { throw new QueryExecutionException('Unable to save data in ' . __CLASS__); } return $res; } catch (\Exception $e) { throw new QueryExecutionException('Unable to save data in ' . __CLASS__); } } }