SettingField
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 5
c 1
b 0
f 1
dl 0
loc 6
ccs 0
cts 0
cp 0
wmc 0
1
<?php namespace EmailLog\Core\UI\Setting;
2
3
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
4
5
/**
6
 * A setting field used in Email Log Settings page.
7
 *
8
 * @see add_settings_field()
9
 */
10
class SettingField {
11
12
	public $id;
13
	public $title;
14
	public $callback;
15
	public $args = array();
16
}
17