Skip to content

variableParameters are set to string  #37

@nime11

Description

@nime11

Hi,
on ProductRequest.php you have one bug on function setVariableParameters it set that you need to send string to a function, but if you want to send multiple parameter you need to send array.
WRONG:
public function setVariableParameters(string ...$variableParameters): void { $this->variableParameters = $variableParameters; }
RIGHT:
public function setVariableParameters(array...$variableParameters): void { $this->variableParameters = $variableParameters; }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions