PluginProbe
Version Info – Server Health Monitor, PHP & MySQL Version Display, Environment Indicators / 2.0.2
Version Info – Server Health Monitor, PHP & MySQL Version Display, Environment Indicators v2.0.2
2.1.0 2.0.3 2.0.2 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 2.0.0 2.0.1
version-info / includes / ProviderInterface.php

ProviderInterface.php in Version Info – Server Health Monitor, PHP & MySQL Version Display, Environment Indicators 2.0.2, at includes/ProviderInterface.php

19 lines 261 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3
4 namespace GauchoPlugins\VersionInfo;
5
6 interface ProviderInterface {
7
8 public function getName();
9
10 public function getKey();
11
12 public function isAvailable();
13
14 /**
15 * @return array<string, mixed>
16 */
17 public function collect();
18 }
19