Skip to content
Extraits de code Groupes Projets
Valider 4e67c401 rédigé par Matthieu Napoli's avatar Matthieu Napoli
Parcourir les fichiers

Restore the constructor (empty) that I removed in d3e92fa4 because it can be...

Restore the constructor (empty) that I removed in d3e92fa4 because it can be called from subclasses

See https://github.com/piwik/piwik/commit/d3e92fa484956fd1edf853cac83e7d2c7a0f3310#commitcomment-10262413
parent c3dbab26
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -30,6 +30,11 @@ use Piwik\Plugins\UsersManager\UserPreferences;
*/
class Menu
{
public function __construct()
{
// Constructor kept for BC (because called in implementations)
}
private function getModule()
{
$className = get_class($this);
......
......@@ -25,6 +25,11 @@ class Widgets
protected $category = '';
protected $widgets = array();
public function __construct()
{
// Constructor kept for BC (because called in implementations)
}
/**
* @ignore
*/
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter