summaryrefslogtreecommitdiff
path: root/plugins/informer
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/informer')
-rw-r--r--plugins/informer/interface.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/informer/interface.go b/plugins/informer/interface.go
index 08eda00b..316c7bc1 100644
--- a/plugins/informer/interface.go
+++ b/plugins/informer/interface.go
@@ -16,6 +16,6 @@ type Informer interface {
// Availabler interface should be implemented by every plugin which wish to report to the PHP worker that it available in the RR runtime
type Availabler interface {
- // Available returns true if the particular plugin available in the RR2 runtime
- Available() bool
+ // Available method needed to collect all plugins which are available in the runtime.
+ Available()
}