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

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

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

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