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

modules/file/file.model.php 2 locations

@@ 46-49 (lines=4) @@
43
			if(!$oDocument->isExists())
44
			{
45
				$oComment = $oCommentModel->getComment($upload_target_srl);
46
				if($oComment->isExists() && $oComment->isSecret() && !$oComment->isGranted())
47
				{
48
					return new Object(-1, 'msg_not_permitted');
49
				}
50
51
				$oDocument = $oDocumentModel->getDocument($oComment->get('document_srl'));
52
			}
@@ 55-58 (lines=4) @@
52
			}
53
54
			// document 권한 확인
55
			if($oDocument->isExists() && $oDocument->isSecret() && !$oDocument->isGranted())
56
			{
57
				return new Object(-1, 'msg_not_permitted');
58
			}
59
60
			// 모듈 권한 확인
61
			if($oDocument->isExists())