WP_Session_Tokens: Can't abstract a static method.

Implementations can choose to implement the drop_sessions() method on their own.

see #20276.


git-svn-id: https://develop.svn.wordpress.org/trunk@29224 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-07-18 19:15:13 +00:00
parent bda49ba928
commit fdacabaa7e

View File

@ -247,7 +247,7 @@ abstract class WP_Session_Tokens {
*
* @since 4.0.0
*/
abstract public static function drop_sessions();
public static function drop_sessions() {}
}
/**