m130901_095634_add_disable_frodo_warning_setting   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 11
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getName() 0 3 1
A getDefaultValue() 0 3 1
1
<?php
2
3
class m130901_095634_add_disable_frodo_warning_setting extends AddSettingMigration
4
{
5
6
	public function getDefaultValue()
7
	{
8
		return '0';
9
	}
10
11
	public function getName()
12
	{
13
		return 'disableFrodoWarning';
14
	}
15
16
}