Your IP : 3.14.251.128


Current Path : /home/sudancam/public_html3/games/wp-content/plugins/wp-rss-aggregator/src/Logger/
Upload File :
Current File : /home/sudancam/public_html3/games/wp-content/plugins/wp-rss-aggregator/src/Logger/ClearableLoggerInterface.php

<?php

namespace RebelCode\Wpra\Core\Logger;

/**
 * An interface for loggers that can be cleared of previously logged messages.
 *
 * @since 4.13
 */
interface ClearableLoggerInterface
{
    /**
     * Clears all previously logged messages.
     *
     * @since 4.13
     *
     * @return void
     */
    public function clearLogs();
}