Make WordPress Core


Ignore:
Timestamp:
07/01/2019 08:00:12 AM (5 years ago)
Author:
pento
Message:

Coding Standards: Fix/ignore the WordPress.NamingConventions.ValidFunctionName violations.

See #47632

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/link-parse-opml.php

    r42343 r45580  
    3232 * @param array $attrs XML element attributes.
    3333 */
    34 function startElement( $parser, $tagName, $attrs ) {
     34function startElement( $parser, $tagName, $attrs ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
    3535    global $names, $urls, $targets, $descriptions, $feeds;
    3636
     
    6969 * @param string $tagName XML tag name.
    7070 */
    71 function endElement( $parser, $tagName ) {
     71function endElement( $parser, $tagName ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
    7272    // Nothing to do.
    7373}
Note: See TracChangeset for help on using the changeset viewer.