: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
use Yoast\WHIPv2\Interfaces\DismissStorage;
* Represents the WordPress option for saving the dismissed messages.
* @phpcs:disable Yoast.NamingConventions.ObjectNameDepth.MaxExceeded -- Sniff does not count acronyms correctly.
class WPDismissOption implements DismissStorage {
protected $optionName = 'whip_dismiss_timestamp';
* Saves the value to the options.
* @param int $dismissedValue The value to save.
* @return bool True when successful.
public function set( $dismissedValue ) {
return \update_option( $this->optionName, $dismissedValue );
* Returns the value of the whip_dismissed option.
* @return int Returns the value of the option or an empty string when not set.
$dismissedOption = \get_option( $this->optionName );
if ( ! $dismissedOption ) {
return (int) $dismissedOption;