Completed
Push — master ( 15f79b...42f7e7 )
by Frédéric
03:51 queued 01:19
created

http   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php namespace norsys\score\net\uri\scheme;
2
3
use norsys\score\{
4
	php,
5
	net\uri\scheme
6
};
7
8
class http extends php\string\any
9
	implements
10
		scheme
11
{
12
	function __construct()
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
13
	{
14
		parent::__construct('http');
15
	}
16
}
17