Make WordPress Core


Ignore:
Timestamp:
07/01/2019 08:00:12 AM (6 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-includes/class-wp-http-cookie.php

    r45135 r45580  
    212212     * @return string Header encoded cookie name and value.
    213213     */
    214     public function getHeaderValue() {
     214    public function getHeaderValue() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
    215215        if ( ! isset( $this->name ) || ! isset( $this->value ) ) {
    216216            return '';
     
    235235     * @return string
    236236     */
    237     public function getFullHeader() {
     237    public function getFullHeader() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
    238238        return 'Cookie: ' . $this->getHeaderValue();
    239239    }
Note: See TracChangeset for help on using the changeset viewer.