summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-08-31 00:05:03 -0400
committerCraig Andrews <candrews@integralblue.com>2010-09-03 17:50:28 -0400
commite7a026091c97c2a9675987492c315ea3a6e09fff (patch)
tree81ed23cddeb5823938bfb53830b48821e38bbda7 /lib
parentb05ab5fc85b320430be9cfe10bf76701c75fc903 (diff)
enqueue_outgoing_raw -> enqueueOutgoingRaw
Diffstat (limited to 'lib')
-rw-r--r--lib/immanager.php2
-rw-r--r--lib/implugin.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/immanager.php b/lib/immanager.php
index da80b74b7..9563a5326 100644
--- a/lib/immanager.php
+++ b/lib/immanager.php
@@ -31,7 +31,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
* 2) override handleInput() with what to do when data is waiting on
* one of the sockets
* 3) override idle($timeout) to do keepalives (if necessary)
- * 4) implement send_raw_message() to send raw data that ImPlugin::enqueue_outgoing_raw
+ * 4) implement send_raw_message() to send raw data that ImPlugin::enqueueOutgoingRaw
* enqueued
*/
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');