Cache.php
1 year ago
ConfigNotFoundException.php
2 years ago
DatabaseConfig.php
1 year ago
GeneralConfig.php
2 years ago
IniFileChain.php
1 month ago
SectionConfig.php
1 month ago
GeneralConfig.php
18 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\Config; |
| 10 | |
| 11 | class GeneralConfig extends \Piwik\Config\SectionConfig |
| 12 | { |
| 13 | public static function getSectionName() : string |
| 14 | { |
| 15 | return 'General'; |
| 16 | } |
| 17 | } |
| 18 |