Historically Yii used lowercase namespaces such as:
namespace yii\caching;
While it conforms to PSR coding style guides (they do not regulate it), majority of PHP packages use CamelCase namespaces such as:
namespace Yii\Caching;
That, when many packages are used in Yii project, causes naming inconsistencies.
Which of the following do you prefer?
- Keep lowercase namespaces
- Switch to CamelCase namespaces
0 voters