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
ConfigSettingInterface.php
21 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 | /** |
| 12 | * @template T of mixed |
| 13 | */ |
| 14 | interface ConfigSettingInterface |
| 15 | { |
| 16 | /** |
| 17 | * @return T |
| 18 | */ |
| 19 | public static function getConfigValue(?int $idSite = null); |
| 20 | } |
| 21 |