Traits
4 months ago
ConfigSettingInterface.php
4 months ago
CustomSettingInterface.php
6 months ago
MeasurableSettingInterface.php
6 months ago
OptionSettingInterface.php
6 months ago
PolicyComparisonInterface.php
4 months ago
SettingValueInterface.php
6 months ago
SystemSettingInterface.php
6 months ago
SystemSettingInterface.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 8 | */ |
| 9 | namespace Piwik\Settings\Interfaces; |
| 10 | |
| 11 | use Piwik\Settings\Plugin\SystemSetting; |
| 12 | /** |
| 13 | * @template T of mixed |
| 14 | */ |
| 15 | interface SystemSettingInterface |
| 16 | { |
| 17 | public static function getSystemSetting() : SystemSetting; |
| 18 | /** |
| 19 | * @return T |
| 20 | */ |
| 21 | public static function getSystemValue(); |
| 22 | } |
| 23 |