Open
Description
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