Browse
For agents
About
Metricool – Social media and site statistics
/
2.0.2
Metricool – Social media and site statistics
v2.0.2
Switch version
2.1.0
2.0.2
2.0.1
2.0.0
1.27
trunk
Overview
Code
metricool
/
app
/
Interfaces
/
ProviderInterface.php
ProviderInterface.php
in Metricool – Social media and site statistics 2.0.2, at app/Interfaces/ProviderInterface.php
15 lines
253 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
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