Skip to content

[NFR] Get-Set param camelCase #1428

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions