im newbie in code igniter, im okay with the underscore convention, but i want to make my own libraries/extended core CI classes/custom function with camelCase convention.
i tried to change :
$config['subclass_prefix'] = 'My';
and the create :
class MyController
class MyModel
myFunction
and it works, but as the documentation said that i shouldn't use camelCase convention.. I just use camelCase so that i know which is the CI's core classess/functions and which is my custom.
until now(3 days with CI) it doesn't produce any trouble with CI and im enjoying this, but yeah im just newbie in CI if anyone have/had bad experience using camelCase with CI please let me know..
the question is:
is it okay for me to use camelCase for custom class/function in CI? i mean will it become trouble in the CI?
CI version 2.X
PHP 5.4