Your IP : 18.188.154.252


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/FeedLoggerInterface.php

<?php

namespace RebelCode\Wpra\Core\Logger;

use Psr\Log\LoggerInterface;

/**
 * Interface for a logger that can log messages for specific feed sources.
 *
 * @since 4.15.1
 */
interface FeedLoggerInterface extends LoggerInterface
{
    /**
     * Returns a copy of the logger instance that logs messages related to a particular feed source.
     *
     * @since 4.15.1
     *
     * @param int $feedId The ID of the feed source.
     *
     * @return LoggerInterface
     */
    public function forFeedSource($feedId);
}