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

component/admin/vendor/joomla/http/src/Transport/Socket.php 1 location

@@ 152-155 (lines=4) @@
149
		}
150
151
		// Authentication, if needed
152
		if (isset($this->options['userauth']) && isset($this->options['passwordauth']))
153
		{
154
			$request[] = 'Authorization: Basic ' . base64_encode($this->options['userauth'] . ':' . $this->options['passwordauth']);
155
		}
156
157
		// Set any custom transport options
158
		if (isset($this->options['transport.socket']))

component/admin/vendor/joomla/http/src/Transport/Stream.php 1 location

@@ 142-145 (lines=4) @@
139
			}
140
141
			// If authentication details are provided, add those as well
142
			if (isset($this->options['proxy.user']) && isset($this->options['proxy.password']))
143
			{
144
				$headers['Proxy-Authorization'] = 'Basic ' . base64_encode($this->options['proxy.user'] . ':' . $this->options['proxy.password']);
145
			}
146
		}
147
148
		// Build the headers string for the request.