| 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 |
|