We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
WP_Object_Cache::__set()
1 parent 21cac03 commit d25f53cCopy full SHA for d25f53c
wp-includes/class-wp-object-cache.php
@@ -101,10 +101,9 @@ public function __get( $name ) {
101
*
102
* @param string $name Property to set.
103
* @param mixed $value Property value.
104
- * @return mixed Newly-set property.
105
*/
106
public function __set( $name, $value ) {
107
- return $this->$name = $value;
+ $this->$name = $value;
108
}
109
110
/**
wp-includes/version.php
@@ -16,7 +16,7 @@
16
17
* @global string $wp_version
18
19
-$wp_version = '6.7-alpha-59065';
+$wp_version = '6.7-alpha-59066';
20
21
22
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
0 commit comments