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 = 3-3 lines in 2 locations

inc/edit-screen.php 1 location

@@ 109-111 (lines=3) @@
106
			}
107
108
			// Backwards compatibily from 0.5 to 0.6
109
			if ( ! isset( $tab['items'] ) && isset( $tab['metaboxes'] ) ) {
110
				$tab['items'] = $tab['metaboxes'];
111
			}
112
113
			if ( isset( $tab['items'] ) ) {
114
				foreach ( $tab['items'] as $metabox_id_fallback => $metabox_id ) {

inc/settings-base.php 1 location

@@ 102-104 (lines=3) @@
99
				}
100
101
				// Backwards compatibily from 0.5 to 0.6
102
				if ( ! isset( $tab['items'] ) && isset( $tab['metaboxes'] ) ) {
103
					$tab['items'] = $tab['metaboxes'];
104
				}
105
106
				if ( $tab['title'] == '' ) {
107
					$tab['title'] = __( 'Choose title', 'tabify-edit-screen' );