Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wordfenc.../modules/login-se.../classes/model
File: settings.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace WordfenceLS;
[2] Fix | Delete
[3] Fix | Delete
abstract class Model_Settings {
[4] Fix | Delete
const AUTOLOAD_YES = 'yes';
[5] Fix | Delete
const AUTOLOAD_NO = 'no';
[6] Fix | Delete
[7] Fix | Delete
/**
[8] Fix | Delete
* Sets $value to $key.
[9] Fix | Delete
*
[10] Fix | Delete
* @param string $key
[11] Fix | Delete
* @param mixed $value
[12] Fix | Delete
* @param string $autoload Whether or not the key/value pair should autoload in storages that do that.
[13] Fix | Delete
* @param bool $allowOverwrite If false, only sets the value if key does not already exist.
[14] Fix | Delete
*/
[15] Fix | Delete
abstract public function set($key, $value, $autoload = self::AUTOLOAD_YES, $allowOverwrite = true);
[16] Fix | Delete
abstract public function set_multiple($values);
[17] Fix | Delete
abstract public function get($key, $default);
[18] Fix | Delete
abstract public function remove($key);
[19] Fix | Delete
}
[20] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function