Will Zend Framework 2 continue to place underscores in front of private members and methods of classes? e.g:
class blah {
private $_name;
private function _doSomethingToName()
{
}
}
I see that they are still there in the dev release of ZF2.