InfyOm\Generator\Common\GeneratorConfig::prepareModelNames PHP Method

prepareModelNames() public method

public prepareModelNames ( )
    public function prepareModelNames()
    {
        $this->mPlural = Str::plural($this->mName);
        $this->mCamel = Str::camel($this->mName);
        $this->mCamelPlural = Str::camel($this->mPlural);
        $this->mSnake = Str::snake($this->mName);
        $this->mSnakePlural = Str::snake($this->mPlural);
    }