# metricool/trunk/app/Interfaces/ProviderInterface.php

Metricool – Social media and site statistics, version trunk. 15 lines.

- Page: https://pluginprobe.com/plugins/metricool/trunk/code/app/Interfaces/ProviderInterface.php
- Raw: https://pluginprobe.com/plugins/metricool/trunk/raw/app/Interfaces/ProviderInterface.php
- Modified: 2026-08-20T14:08:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/metricool/trunk/code/app/Interfaces/ProviderInterface.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace Metricool\Interfaces;

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

```
