update: Class Name

This commit is contained in:
Ronan 2020-01-20 18:59:24 +01:00
commit ffdba42616
3 changed files with 4 additions and 4 deletions

View file

@ -1,27 +0,0 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\GoogleAnalyticsTheme;
use Piwik\Plugin;
class GoogleAnalyticsTheme extends Plugin
{
public function getListHooksRegistered()
{
return [
'Theme.configureThemeVariables' => 'configureThemeVariables',
];
}
public function configureThemeVariables(Plugin\ThemeStyles $vars)
{
//Nothing here
}
}