for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kint\Test\Fixtures;
class Php7TestClass
{
public function typeHints(string $p1, int $p2, bool $p3 = false): self
$p1
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$p2
$p3
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.