diff -r c7c34916027a -r 177826044cd9 wp/wp-includes/class-wp-feed-cache-transient.php --- a/wp/wp-includes/class-wp-feed-cache-transient.php Mon Oct 14 18:06:33 2019 +0200 +++ b/wp/wp-includes/class-wp-feed-cache-transient.php Mon Oct 14 18:28:13 2019 +0200 @@ -50,8 +50,8 @@ * @param string $filename Unique identifier for cache object. * @param string $extension 'spi' or 'spc'. */ - public function __construct($location, $filename, $extension) { - $this->name = 'feed_' . $filename; + public function __construct( $location, $filename, $extension ) { + $this->name = 'feed_' . $filename; $this->mod_name = 'feed_mod_' . $filename; $lifetime = $this->lifetime; @@ -63,7 +63,7 @@ * @param int $lifetime Cache duration in seconds. Default is 43200 seconds (12 hours). * @param string $filename Unique identifier for the cache object. */ - $this->lifetime = apply_filters( 'wp_feed_cache_transient_lifetime', $lifetime, $filename); + $this->lifetime = apply_filters( 'wp_feed_cache_transient_lifetime', $lifetime, $filename ); } /** @@ -74,13 +74,13 @@ * @param SimplePie $data Data to save. * @return true Always true. */ - public function save($data) { + public function save( $data ) { if ( $data instanceof SimplePie ) { $data = $data->data; } - set_transient($this->name, $data, $this->lifetime); - set_transient($this->mod_name, time(), $this->lifetime); + set_transient( $this->name, $data, $this->lifetime ); + set_transient( $this->mod_name, time(), $this->lifetime ); return true; } @@ -92,7 +92,7 @@ * @return mixed Transient value. */ public function load() { - return get_transient($this->name); + return get_transient( $this->name ); } /** @@ -103,7 +103,7 @@ * @return mixed Transient value. */ public function mtime() { - return get_transient($this->mod_name); + return get_transient( $this->mod_name ); } /** @@ -114,7 +114,7 @@ * @return bool False if value was not set and true if value was set. */ public function touch() { - return set_transient($this->mod_name, time(), $this->lifetime); + return set_transient( $this->mod_name, time(), $this->lifetime ); } /** @@ -125,8 +125,8 @@ * @return true Always true. */ public function unlink() { - delete_transient($this->name); - delete_transient($this->mod_name); + delete_transient( $this->name ); + delete_transient( $this->mod_name ); return true; } }