: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
namespace Nextend\Framework\Session;
use Nextend\Framework\Session\Joomla\JoomlaStorage;
use Nextend\Framework\Session\WordPress\WordPressStorage;
* @var $storage AbstractStorage
private static $storage = false;
private static function getStorage() {
self::$storage = new WordPressStorage();
public static function get($key, $default = null) {
return self::getStorage()
public static function set($key, $value) {
public static function delete($key) {