File "DismissStorage.php"
Full Path: /home/elegucvf/public_html/video/wp-content/plugins/wordpress-seo/vendor/yoast/whip/src/Interfaces/DismissStorage.php
File size: 375 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Yoast\WHIPv2\Interfaces;
/**
* Interface DismissStorage.
*/
interface DismissStorage {
/**
* Saves the value.
*
* @param int $dismissedValue The value to save.
*
* @return bool True when successful.
*/
public function set( $dismissedValue );
/**
* Returns the value.
*
* @return int The stored value.
*/
public function get();
}