wp/wp-includes/class-wp-http-response.php
changeset 16 a86126ab1dd4
parent 7 cf61fcea0001
child 21 48c4eec2b7e6
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
   145 	 *
   145 	 *
   146 	 * @since 4.4.0
   146 	 * @since 4.4.0
   147 	 *
   147 	 *
   148 	 * @return mixed Any JSON-serializable value.
   148 	 * @return mixed Any JSON-serializable value.
   149 	 */
   149 	 */
   150 	public function jsonSerialize() {
   150 	public function jsonSerialize() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
   151 		return $this->get_data();
   151 		return $this->get_data();
   152 	}
   152 	}
   153 }
   153 }