The constructor signature contains one or more unused parameters. Since these are nowhere used in the class, it can be safely removed.
class UnusedParam
{
public function __construct($unusedParameter)
{}
}
class UnusedParam
{
public function __construct()
{}
}