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   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 19
rs 10
c 0
b 0
f 0
wmc 4
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A updateConfig() 0 16 4
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