Cache.php
2 years ago
ConfigNotFoundException.php
2 years ago
DatabaseConfig.php
2 years ago
GeneralConfig.php
2 years ago
IniFileChain.php
2 years ago
SectionConfig.php
2 years ago
DatabaseConfig.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 8 | * |
| 9 | */ |
| 10 | namespace Piwik\Config; |
| 11 | |
| 12 | class DatabaseConfig extends \Piwik\Config\SectionConfig |
| 13 | { |
| 14 | public static function getSectionName() : string |
| 15 | { |
| 16 | return 'database'; |
| 17 | } |
| 18 | } |
| 19 |