Opened 4 years ago
Closed 4 years ago
#57676 closed enhancement (invalid)
Object property is not in valid snake_case format
| Reported by: | madhusudan1825 | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Widgets | Version: | |
| Severity: | minor | Keywords: | needs-patch |
| Cc: | Focuses: | coding-standards |
Description
File path :
wp-includes/widgets/class-wp-widget-text.php
For the "nodeName" and "textContent" properties, need to rename for maintaining snake_case format as per the coding standard.
Change History (2)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Those properties are properties from the PHP native `DOMElement` class. Changing the case is not possible without first changing it in PHP itself.
In other words: the case of those properties should NOT be touched.