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

system/libraries/Email.php 2 locations

@@ 1912-1921 (lines=10) @@
1909
			}
1910
		}
1911
1912
		if (count($this->_cc_array) > 0)
1913
		{
1914
			foreach ($this->_cc_array as $val)
1915
			{
1916
				if ($val !== '' && ! $this->_send_command('to', $val))
1917
				{
1918
					return FALSE;
1919
				}
1920
			}
1921
		}
1922
1923
		if (count($this->_bcc_array) > 0)
1924
		{
@@ 1923-1932 (lines=10) @@
1920
			}
1921
		}
1922
1923
		if (count($this->_bcc_array) > 0)
1924
		{
1925
			foreach ($this->_bcc_array as $val)
1926
			{
1927
				if ($val !== '' && ! $this->_send_command('to', $val))
1928
				{
1929
					return FALSE;
1930
				}
1931
			}
1932
		}
1933
1934
		if ( ! $this->_send_command('data'))
1935
		{