Changeset 5595
- Timestamp:
- 06/21/2017 10:26:50 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/formatting.php
r5582 r5595 377 377 // Most class names start with an uppercase letter and have an underscore. 378 378 // The exceptions are explicitly listed since future classes likely won't violate previous statement. 379 // Requests and Translations, due to their higher likelihood of use as a word and not as an inline class 380 // reference, should be explicitly referenced, e.g. `{@see Requests}`. 379 381 '~' 380 382 . '(?<!/)' … … 382 384 . '(' // Primary match grouping 383 385 . 'wpdb|wp_atom_server|wp_xmlrpc_server' // Exceptions that start with lowercase letter 384 . '|AtomFeed|AtomEntry|AtomParser|MagpieRSS|R equests|RSSCache|Translations|Walker' // Exceptions that lack an underscore386 . '|AtomFeed|AtomEntry|AtomParser|MagpieRSS|RSSCache|Walker' // Exceptions that lack an underscore 385 387 . '|_?[A-Z][a-zA-Z]+_\w+' // Most start with (optional underscore, then) uppercase, has underscore 386 388 . ')' // End primary match grouping
Note: See TracChangeset
for help on using the changeset viewer.