PluginProbe
Metricool – Social media and site statistics / trunk
Metricool – Social media and site statistics vtrunk
2.1.0 2.0.2 2.0.1 2.0.0 1.27 trunk
metricool / app / Interfaces / ProviderInterface.php

ProviderInterface.php in Metricool – Social media and site statistics trunk, at app/Interfaces/ProviderInterface.php

15 lines 253 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Metricool\Interfaces;
6
7 interface ProviderInterface
8 {
9 /**
10 * The method that gets called by the ProviderManager to serve the provided
11 * functionality.
12 */
13 public function provide(): void;
14 }
15