Is there a settings to format generated getters/setter functions as camel case regardless of property case?
Current Results:
class MyClass
{
private int $variable_id;
/**
* @return int
*/
public function getVariable_id(): int
{
return $this->variable_id;
}
Desired Results:
class MyClass
{
private int $variable_id;
/**
* @return int
*/
public function getVariableId(): int
{
return $this->variable_id;
}