HTTPOptions
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
eloc 2
dl 0
loc 2
c 3
b 0
f 0
wmc 0
1
<?php
2
/**
3
 * Class HTTPOptions
4
 *
5
 * @created      28.08.2018
6
 * @author       smiley <[email protected]>
7
 * @copyright    2018 smiley
8
 * @license      MIT
9
 */
10
11
namespace chillerlan\HTTP;
12
13
use chillerlan\Settings\SettingsContainerAbstract;
14
15
/**
16
 *
17
 */
18
class HTTPOptions extends SettingsContainerAbstract{
19
	use HTTPOptionsTrait;
20
}
21