Completed
Push — master ( ffdc94...b14464 )
by Frédéric
02:52
created

rfc3986   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 recipientOfHostInUriAuthorityAsStringIs() 0 3 1
1
<?php namespace norsys\score\net\host\converter\toString;
2
3
use norsys\score\{
4
	net\host\converter\toString,
5
	net\host,
6
	php\string\recipient
7
};
8
9
class rfc3986
10
	implements
11
		toString
12
{
13
	function recipientOfHostInUriAuthorityAsStringIs(host $host, recipient $recipient) :void
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...
14
	{
15
		$host->recipientOfStringIs($recipient);
16
	}
17
}
18