• File: ProviderInterface.php
  • Full Path: /home/docteuh/www/plugins/really-simple-ssl/core/app/Interfaces/ProviderInterface.php
  • Date Modified: 06/18/2026 4:25 PM
  • File size: 272 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

declare(strict_types=1);

namespace ReallySimplePlugins\RSS\Core\Interfaces;

interface ProviderInterface
{
    /**
     * The method that gets called by the ProviderManager to serve the provided
     * functionality.
     */
    public function provide(): void;
}