Code Duplication    Length = 11-11 lines in 2 locations

includes/admin/class-admin-settings.php 2 locations

@@ 409-419 (lines=11) @@
406
407
					// Section Ends.
408
					case 'sectionend':
409
						if ( ! empty( $value['id'] ) ) {
410
411
							/**
412
							 * Trigger Action.
413
							 *
414
							 * Note: action dynamically fire on basis of field id.
415
							 *
416
							 * @since 1.8
417
							 */
418
							do_action( 'give_settings_' . sanitize_title( $value['id'] ) . '_end' );
419
						}
420
421
						if ( $value['table_html'] ) {
422
							echo '</table>';
@@ 425-435 (lines=11) @@
422
							echo '</table>';
423
						}
424
425
						if ( ! empty( $value['id'] ) ) {
426
427
							/**
428
							 * Trigger Action.
429
							 *
430
							 * Note: action dynamically fire on basis of field id.
431
							 *
432
							 * @since 1.8
433
							 */
434
							do_action( 'give_settings_' . sanitize_title( $value['id'] ) . '_after' );
435
						}
436
437
						break;
438