Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
Fix extension definition (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
aledeg committed Jan 5, 2021
1 parent 5e4e051 commit 4502a7e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions xExtension-Dilbert/extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@
*/
class DilbertExtension extends Minz_Extension
{
public function install()
{
return true;
}

public function uninstall()
{
return true;
}

public function handleConfigureAction()
{
}

/**
* Initialize this extension
*/
Expand Down

0 comments on commit 4502a7e

Please sign in to comment.