[eluser]Rolling[/eluser]
When using private functions in controllers, is it still necessary to prefix function names with an underscore?
Code:
//PHP 5+
private function something() {}
It seems that the private keyword is enough to 404 the function from public access, however is the underscore still necessary for any reason or is it just a CI styling convention?