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.
Completed
Push — master ( 278e53...818459 )
by gyeong-won
39:17 queued 30:14
created

krzipController::updateConfig()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 16
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
eloc 8
nc 4
nop 1
dl 0
loc 16
rs 9.2
c 0
b 0
f 0
1
<?php
2
/* Copyright (C) NAVER <http://www.navercorp.com> */
3
/**
4
 * @class  krzipController
5
 * @author NAVER ([email protected])
6
 * @brief  Krzip module controller class.
7
 */
8
9
class krzipController extends krzip
10
{
11
	function updateConfig($args)
12
	{
13
		if(!$args || !is_object($args))
14
		{
15
			$args = new stdClass();
16
		}
17
18
		$oModuleController = getController('module');
19
		$output = $oModuleController->updateModuleConfig('krzip', $args);
20
		if($output->toBool())
21
		{
22
			unset($this->module_config);
23
		}
24
25
		return $output;
26
	}
27
}
28
29
/* End of file krzip.controller.php */
30
/* Location: ./modules/krzip/krzip.controller.php */
31