Passed
Push — master ( b14464...df5bb2 )
by Frédéric
02:05
created

any::recipientOfUriAsStringFromConverterIs()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php namespace norsys\score\net\uri;
2
3
use norsys\score\net\uri;
4
use norsys\score\php\string\recipient;
5
6
class any
7
	implements
8
		uri
9
{
10
	function recipientOfUriAsStringFromConverterIs(uri\converter\toString $converter, 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...
Bug introduced by
The type norsys\score\net\uri\converter\toString was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
11
	{
12
	}
13
}
14