Code Duplication    Length = 16-16 lines in 2 locations

admin_pages/registrations/Registrations_Admin_Page.core.php 2 locations

@@ 2346-2361 (lines=16) @@
2343
     * @param        string $label
2344
     * @return        string
2345
     */
2346
    public function form_form_field_label_wrap($label)
2347
    {
2348
        EE_Error::doing_it_wrong(
2349
            __CLASS__ . '::' . __FUNCTION__,
2350
            esc_html__(
2351
                'This method would have been protected but was used on a filter callback so needed to be public. Please discontinue usage as it will be removed soon.',
2352
                'event_espresso'
2353
            ),
2354
            '4.8.32.rc.000'
2355
        );
2356
        return '
2357
			<tr>
2358
				<th>
2359
					' . $label . '
2360
				</th>';
2361
    }
2362
2363
2364
    /**
@@ 2372-2387 (lines=16) @@
2369
     * @param        string $input
2370
     * @return        string
2371
     */
2372
    public function form_form_field_input__wrap($input)
2373
    {
2374
        EE_Error::doing_it_wrong(
2375
            __CLASS__ . '::' . __FUNCTION__,
2376
            esc_html__(
2377
                'This method would have been protected but was used on a filter callback so needed to be public. Please discontinue usage as it will be removed soon.',
2378
                'event_espresso'
2379
            ),
2380
            '4.8.32.rc.000'
2381
        );
2382
        return '
2383
				<td class="reg-admin-attendee-questions-input-td disabled-input">
2384
					' . $input . '
2385
				</td>
2386
			</tr>';
2387
    }
2388
2389
2390
    /**