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

phpmyfaq/inc/libs/tcpdf/tcpdf_parser.php 2 locations

@@ 324-329 (lines=6) @@
321
					// indirect object
322
					$objtype = 'endobj';
323
					$offset += 6;
324
				} elseif (substr($this->pdfdata, $offset, 4) == 'null') {
325
					// null object
326
					$objtype = 'null';
327
					$offset += 4;
328
					$objval = 'null';
329
				} elseif (substr($this->pdfdata, $offset, 4) == 'true') {
330
					// boolean true object
331
					$objtype = 'boolean';
332
					$offset += 4;
@@ 334-339 (lines=6) @@
331
					$objtype = 'boolean';
332
					$offset += 4;
333
					$objval = 'true';
334
				} elseif (substr($this->pdfdata, $offset, 5) == 'false') {
335
					// boolean false object
336
					$objtype = 'boolean';
337
					$offset += 5;
338
					$objval = 'false';
339
				} elseif (substr($this->pdfdata, $offset, 6) == 'stream') {
340
					// start stream object
341
					$objtype = 'stream';
342
					$offset += 6;