Code Duplication    Length = 6-9 lines in 2 locations

src/Field/BaseInput.php 2 locations

@@ 135-143 (lines=9) @@
132
			</span>
133
		<?php }
134
135
		if ( $this->show_desc === true && $this->desc_above === true ) :
136
		?>
137
138
        <p class="form-field-description" id="form-field-description-<?= esc_attr( $this->merge ); ?>">
139
			<?= esc_html( apply_filters( 'yikes-mailchimp-' . $this->merge . '-description', $this->description, $this->form_id ) ); ?>
140
		</p>
141
142
        <?php
143
        endif;
144
		?>
145
		<input type="<?= esc_attr( $this->get_type() ); ?>"
146
			class="<?= esc_attr( implode( ' ' , $this->field_classes() ) ); ?>"
@@ 159-164 (lines=6) @@
156
			<?php endif; ?>
157
		/>
158
		<?php
159
		if ( $this->show_desc === true && $this->desc_above === false ) {
160
			$desc_value = apply_filters( 'yikes-mailchimp-' . $this->merge . '-description', $this->description, $this->form_id );
161
		?>
162
            <p class="form-field-description" id="form-field-description-<?= esc_attr( $this->merge ); ?>"><?=  esc_html( $desc_value ); ?></p>
163
        <?php
164
        }
165
	}
166
}
167