Issues (477)

src/php/string/recipient/vardump.php (2 issues)

1
<?php namespace norsys\score\php\string\recipient;
2
3
use norsys\score\php;
4
5
class vardump
6
	implements
7
		php\string\recipient
8
{
9
	function stringIs(string $string) :void
0 ignored issues
show
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...
10
	{
11
		var_dump($string);
0 ignored issues
show
Security Debugging Code introduced by
var_dump($string) looks like debug code. Are you sure you do not want to remove it?
Loading history...
12
	}
13
}
14