src/Validators/UniqueWithValidator.php
Method replaceUniqueWith
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function replaceUniqueWith($message, $attribute, $rule, $parameters, $validator)
- Create a ticketCreate a ticket
Avoid unused parameters such as '$rule'. Open
Open
public function replaceUniqueWith($message, $attribute, $rule, $parameters, $validator)
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
UnusedFormalParameter
Since: 0.2
Avoid passing parameters to methods or constructors and then not using those parameters.
Example
class Foo
{
private function bar($howdy)
{
// $howdy is not used
}
}