I have found contradictory rules about Codeigniter 4 naming conventions & style guide. For example following are two guides about class names: Controller class names MUST start with an uppercase letter and ONLY the first character can be uppercase.
Can somebody clarify about method & class naming convention and whether we have different requirements for controllers, models,helpers, etc?
Can I use following convention:
All Classes: Any_class
Methods: any_method
As URL should always be in lowercase so I think camelCase method names should not be used. What is your opinion?
I know its a matter of personal choice but I want to follow best practices.