Code is Poetry.

WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.


Built from https://develop.svn.wordpress.org/trunk@42343


git-svn-id: http://core.svn.wordpress.org/trunk@42172 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast
2017-11-30 23:11:00 +00:00
parent 62be7ad218
commit aaf99e6913
610 changed files with 55731 additions and 43711 deletions

View File

@@ -50,8 +50,8 @@ class WP_Feed_Cache_Transient {
* @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 @@ class WP_Feed_Cache_Transient {
* @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 @@ class WP_Feed_Cache_Transient {
* @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 @@ class WP_Feed_Cache_Transient {
* @return mixed Transient value.
*/
public function load() {
return get_transient($this->name);
return get_transient( $this->name );
}
/**
@@ -103,7 +103,7 @@ class WP_Feed_Cache_Transient {
* @return mixed Transient value.
*/
public function mtime() {
return get_transient($this->mod_name);
return get_transient( $this->mod_name );
}
/**
@@ -114,7 +114,7 @@ class WP_Feed_Cache_Transient {
* @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 @@ class WP_Feed_Cache_Transient {
* @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;
}
}