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;
    }

    DavidM good point, we should normalize the names according to the setting "php.completion.namingConvention".

      fixed, the feature will be in the next update (release and/or pre-release)

        Write a Reply...