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

src/AttributeMatcher.php 2 locations

@@ 90-96 (lines=7) @@
87
			if ( $this->attributeNameMatcher instanceof Matcher ) {
88
				if ( $this->valueMatcher instanceof Matcher ) {
89
					/** @var \DOMAttr $attribute */
90
					foreach ( $item->attributes as $attribute ) {
91
						if ( $this->attributeNameMatcher->matches( $attribute->name )
92
							&& $this->valueMatcher->matches( $attribute->value )
93
						) {
94
							return true;
95
						}
96
					}
97
				} else {
98
					/** @var \DOMAttr $attribute */
99
					foreach ( $item->attributes as $attribute ) {
@@ 99-105 (lines=7) @@
96
					}
97
				} else {
98
					/** @var \DOMAttr $attribute */
99
					foreach ( $item->attributes as $attribute ) {
100
						if ( $this->attributeNameMatcher->matches( $attribute->name )
101
							&& $attribute->value === $this->valueMatcher
102
						) {
103
							return true;
104
						}
105
					}
106
				}
107
			} else {
108
				if ( $this->valueMatcher instanceof Matcher ) {