diff options
Diffstat (limited to 'lib/implugin.php')
-rw-r--r-- | lib/implugin.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/implugin.php b/lib/implugin.php index 8a208221a..32aed28ed 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -79,7 +79,7 @@ abstract class ImPlugin extends Plugin /** * send a single notice to a given screenname * The implementation should put raw data, ready to send, into the outgoing - * queue using enqueue_outgoing_raw() + * queue using enqueueOutgoingRaw() * * @param string $screenname screenname to send to * @param Notice $notice notice to send @@ -94,7 +94,7 @@ abstract class ImPlugin extends Plugin /** * send a message (text) to a given screenname * The implementation should put raw data, ready to send, into the outgoing - * queue using enqueue_outgoing_raw() + * queue using enqueueOutgoingRaw() * * @param string $screenname screenname to send to * @param Notice $body text to send @@ -144,7 +144,7 @@ abstract class ImPlugin extends Plugin * * @param object $data */ - function enqueue_outgoing_raw($data) + function enqueueOutgoingRaw($data) { $qm = QueueManager::get(); $qm->enqueue($data, $this->transport . '-out'); |