Skip to content

Commit c1b526c

Browse files
Update addon-installer.md
Correct parent references for install and uninstall methods.
1 parent c80f04e commit c1b526c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/development/addon-installer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ Additional functionality can be installed using the following guidelines:
8989

9090
public function install()
9191
{
92-
parent::__construct();
92+
parent::install();
9393
}
9494

9595
public function uninstall ()
9696
{
97-
parent::__construct();
97+
parent::uninstall();
9898
}
9999

100100
}

0 commit comments

Comments
 (0)