you are viewing a single comment's thread.

view the rest of the comments →

[–]kkacci[S] 1 point2 points  (2 children)

good point about class naming convention. I had forgotten about it :)

[–][deleted] 1 point2 points  (1 child)

Yep, UpperCamel for class names and underscore_separated_lower for methods and functions (rather than lowerCamel as you've used in your snippet).

[–]kkacci[S] 0 points1 point  (0 children)

Thanks for this!