Code Duplication    Length = 5-5 lines in 2 locations

classes/class-wetu-importer-accommodation.php 2 locations

@@ 853-857 (lines=5) @@
850
	 * Set the Check in and Check out Date
851
	 */
852
	public function set_checkin_checkout( $data, $id ) {
853
		if ( ! empty( $data[0]['features'] ) && isset( $data[0]['features']['check_in_time'] ) ) {
854
			$time = str_replace( 'h',':',$data[0]['features']['check_in_time'] );
855
			$time = date( 'h:ia',strtotime( $time ) );
856
			$this->save_custom_field( $time,'checkin_time',$id );
857
		}
858
859
		if ( ! empty( $data[0]['features'] ) && isset( $data[0]['features']['check_out_time'] ) ) {
860
			$time = str_replace( 'h',':',$data[0]['features']['check_out_time'] );
@@ 859-863 (lines=5) @@
856
			$this->save_custom_field( $time,'checkin_time',$id );
857
		}
858
859
		if ( ! empty( $data[0]['features'] ) && isset( $data[0]['features']['check_out_time'] ) ) {
860
			$time = str_replace( 'h',':',$data[0]['features']['check_out_time'] );
861
			$time = date( 'h:ia',strtotime( $time ) );
862
			$this->save_custom_field( $time,'checkout_time',$id );
863
		}
864
	}
865
866
	/**