diff options
Diffstat (limited to 'lib/Minz/ExtensionManager.php')
| -rw-r--r-- | lib/Minz/ExtensionManager.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/Minz/ExtensionManager.php b/lib/Minz/ExtensionManager.php index b3756372e..976dddb82 100644 --- a/lib/Minz/ExtensionManager.php +++ b/lib/Minz/ExtensionManager.php @@ -90,10 +90,14 @@ final class Minz_ExtensionManager { 'list' => array(), 'signature' => 'NoneToNone', ), - 'simplepie_before_init' => array( // function($simplePie, $feed) -> none - 'list' => array(), + 'simplepie_after_init' => [ // function(\SimplePie\SimplePie $simplePie, FreshRSS_Feed $feed, bool $result): void + 'list' => [], 'signature' => 'PassArguments', - ), + ], + 'simplepie_before_init' => [ // function(\SimplePie\SimplePie $simplePie, FreshRSS_Feed $feed): void + 'list' => [], + 'signature' => 'PassArguments', + ], ]; /** Remove extensions and hooks from a previous initialisation */ |
