You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor #19875 Don't capitalize acronyms in class names (javiereguiluz)
This PR was merged into the 6.4 branch.
Discussion
----------
Don't capitalize acronyms in class names
PHP has approved a new policy banning the usage of capitalized acronyms in class names (https://wiki.php.net/rfc/class-naming-acronyms):
| Wrong | Correct
| ----- | -------
| `FooDTO` | `FooDto`
| `HTTPFoo` | `HttpFoo`
| `PDOFooPHP` | `PdoFooPhp`
So, I propose to use this same policy for Symfony Docs.
Note: we need to be careful because some class are defined by external projects and the use the "wrong" names (`ReactPHPRunner`, etc.)
Commits
-------
5b8e198 Don't capitalize acronyms in class names
0 commit comments