GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 10-10 lines in 3 locations

admin/schedule-sentence.php 3 locations

@@ 66-75 (lines=10) @@
63
64
	break;
65
66
	case 'weekly' :
67
68
		$reoccurrence = sprintf(
69
			/* translators: 1: Full name of the week day, eg. Monday 2: Time */
70
			esc_html__( 'weekly on %1$s at %2$s', 'backupwordpress' ),
71
			'<span ' . $next_backup . '>' . esc_html( $day ) . '</span>',
72
			'<span>' . esc_html( date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) ) . '</span>'
73
		);
74
75
	break;
76
77
	case 'fortnightly' :
78
@@ 77-86 (lines=10) @@
74
75
	break;
76
77
	case 'fortnightly' :
78
79
		$reoccurrence = sprintf(
80
			/* translators: 1: Full name of the week day, eg. Monday 2: Time */
81
			esc_html__( 'every two weeks on %1$s at %2$s', 'backupwordpress' ),
82
			'<span ' . $next_backup . '>' . esc_html( $day ) . '</span>',
83
			'<span>' . esc_html( date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) ) . '</span>'
84
		);
85
86
	break;
87
88
	case 'monthly' :
89
@@ 88-97 (lines=10) @@
85
86
	break;
87
88
	case 'monthly' :
89
90
		$reoccurrence = sprintf(
91
			/* translators: 1: Ordinal number of a day of a month, eg. 1st, 10th 2: Time */
92
			esc_html__( 'on the %1$s of each month at %2$s', 'backupwordpress' ),
93
			'<span ' . $next_backup . '>' . esc_html( date_i18n( 'jS', $schedule->get_next_occurrence( false ) ) ) . '</span>',
94
			'<span>' . esc_html( date_i18n( get_option( 'time_format' ), $schedule->get_next_occurrence( false ) ) ) . '</span>'
95
		);
96
97
	break;
98
99
	case 'manually' :
100