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

lib/JWX/JWE/KeyManagementAlgorithm.php 1 location

@@ 125-131 (lines=7) @@
122
	 * @see \JWX\JWT\Header\HeaderParameters::headerParameters()
123
	 * @return JWTParameter[]
124
	 */
125
	public function headerParameters() {
126
		$params = array();
127
		if (isset($this->_keyID)) {
128
			$params[] = new KeyIDParameter($this->_keyID);
129
		}
130
		return $params;
131
	}
132
}
133

lib/JWX/JWS/SignatureAlgorithm.php 1 location

@@ 76-82 (lines=7) @@
73
	 * @see \JWX\JWT\Header\HeaderParameters::headerParameters()
74
	 * @return JWTParameter[]
75
	 */
76
	public function headerParameters() {
77
		$params = array();
78
		if (isset($this->_keyID)) {
79
			$params[] = new KeyIDParameter($this->_keyID);
80
		}
81
		return $params;
82
	}
83
}
84