diff options
author | Matt Perry <matt@mattperry.com> | 2013-08-22 01:01:41 -0700 |
---|---|---|
committer | Matt Perry <matt@mattperry.com> | 2013-08-22 01:01:41 -0700 |
commit | 7ef8e99fe605c5da36ab6b5d317b22fcd17f665b (patch) | |
tree | 2245231ac0dcbeea7084a751f89699e3307133f2 /lib/plugins/action.php | |
parent | 104262381eb89124eb900397f5054fde8e3d5658 (diff) | |
download | rpg-7ef8e99fe605c5da36ab6b5d317b22fcd17f665b.tar.gz rpg-7ef8e99fe605c5da36ab6b5d317b22fcd17f665b.tar.bz2 |
Fix CodeSniffer violations
Change indentation to ensure code confirms to CodeSniffer rules.
Diffstat (limited to 'lib/plugins/action.php')
-rw-r--r-- | lib/plugins/action.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/plugins/action.php b/lib/plugins/action.php index a2ad969d7..04b4f07a6 100644 --- a/lib/plugins/action.php +++ b/lib/plugins/action.php @@ -14,10 +14,10 @@ if(!defined('DOKU_INC')) die(); */ class DokuWiki_Action_Plugin extends DokuWiki_Plugin { - /** - * Registers a callback function for a given event - */ - function register(Doku_Event_Handler $controller) { + /** + * Registers a callback function for a given event + */ + function register(Doku_Event_Handler $controller) { trigger_error('register() not implemented in '.get_class($this), E_USER_WARNING); - } + } } |