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

modules/document/document.controller.php 2 locations

@@ 581-586 (lines=6) @@
578
		$output->add('document_srl',$obj->document_srl);
579
		//remove from cache
580
		$oCacheHandler = CacheHandler::getInstance('object');
581
		if($oCacheHandler->isSupport())
582
		{
583
			//remove document item from cache
584
			$cache_key = 'document_item:'. getNumberingPath($obj->document_srl) . $obj->document_srl;
585
			$oCacheHandler->delete($cache_key);
586
		}
587
588
		return $output;
589
	}
@@ 820-824 (lines=5) @@
817
818
		// Clear cache
819
		$oCacheHandler = CacheHandler::getInstance('object');
820
		if($oCacheHandler->isSupport())
821
		{
822
			$cache_key = 'document_item:'. getNumberingPath($oDocument->document_srl) . $oDocument->document_srl;
823
			$oCacheHandler->delete($cache_key);
824
		}
825
826
		return $output;
827
	}