I was reading the Yii 2 coding style and the following caught my attention:
Quote
Class names MUST be declared in StudlyCaps. Core classes should be prefixed with C. For example, CController, CWidget. Application and extension classes should not use C as prefix. For extensions it's common to use E.
My question is... is still necessary the class names prefixes once we have namespaces? Why use CClass, EClass or Class if we are able to have \yii\Class, \extension\Class or \app\Class / \Class?
Cheers.