Make WordPress Core

Changeset 63195


Ignore:
Timestamp:
08/12/2026 04:12:21 AM (13 days ago)
Author:
desrosj
Message:

Build/Test Tools: Update php_codesniffer in the 6.6 branch.

This addresses a Composer error where the defined requirements could not be resolved into an installable set of packages due to a new, higher transitive dependency floor.

Props jonsurrell, desrosj.
See #65739.

Location:
branches/6.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/6.6/composer.json

    r63042 r63195  
    1818        },
    1919        "require-dev": {
    20                 "squizlabs/php_codesniffer": "3.9.0",
     20                "squizlabs/php_codesniffer": "3.13.6",
    2121                "wp-coding-standards/wpcs": "~3.1.0",
    2222                "phpcompatibility/phpcompatibility-wp": "~2.1.3",
     
    2424        },
    2525        "config": {
    26                 "audit": { "ignore": [ "GHSA-3pwp-g2mj-5p3v", "GHSA-hmqg-cxww-wqhq", "PKSA-rdkp-vv9z-mjkg" ] },
     26                "audit": { "ignore": [ "GHSA-3pwp-g2mj-5p3v" ] },
    2727                "allow-plugins": {
    2828                        "dealerdirect/phpcodesniffer-composer-installer": true
  • branches/6.6/src/wp-includes/class-wp-object-cache.php

    r55549 r63195  
    105105         */
    106106        public function __set( $name, $value ) {
    107                 return $this->$name = $value;
     107                $this->$name = $value;
     108
     109                return $value;
    108110        }
    109111
Note: See TracChangeset for help on using the changeset viewer.