Skip to content

[NFR] Get-Set param camelCase #1428

Open
@renatogabrielbr

Description

@renatogabrielbr

Now

    public function setTableId($table_id)
    {
        $this->table_id = $table_id;
        return $this;
    }

Could Be?

    public function setTableId($tableId)
    {
        $this->table_id = $tableId;
        return $this;
    }

and if possible also declaration type

For code analyse and review... or maybe an option --get-set-camelCase

Thank you

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions