Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

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

src/class-dom.php 2 locations

@@ 226-230 (lines=5) @@
223
	 * @return \DOMText|null Null if $node is a block-level element or no text sibling exists.
224
	 */
225
	private static function get_adjacent_textnode( callable $iterate, callable $get_adjacent_parent, \DOMNode $node = null ) {
226
		if ( ! isset( $node ) ) {
227
			return null;
228
		} elseif ( $node instanceof \DOMElement && isset( self::$block_tags[ $node->tagName ] ) ) {
229
			return null;
230
		}
231
232
		/**
233
		 * The result node.
@@ 309-316 (lines=8) @@
306
			return null;
307
		}
308
309
		if ( $node instanceof \DOMText ) {
310
			return $node;
311
		} elseif ( ! $node instanceof \DOMElement ) {
312
			// Return null if $node is neither \DOMText nor \DOMElement.
313
			return null;
314
		} elseif ( $recursive && isset( self::$block_tags[ $node->tagName ] ) ) {
315
			return null;
316
		}
317
318
		$edge_textnode = null;
319