diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-08-31 00:05:03 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-09-03 17:50:28 -0400 |
commit | e7a026091c97c2a9675987492c315ea3a6e09fff (patch) | |
tree | 81ed23cddeb5823938bfb53830b48821e38bbda7 /lib/implugin.php | |
parent | b05ab5fc85b320430be9cfe10bf76701c75fc903 (diff) |
enqueue_outgoing_raw -> enqueueOutgoingRaw
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'); |