summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-08-31 00:03:37 -0400
committerCraig Andrews <candrews@integralblue.com>2010-09-03 17:50:28 -0400
commit764e0ab962018f41db6549393e98a64a7fe12a04 (patch)
tree0f4ddf3a3e8f5c47b689bb791111e48d54ba92f9 /lib
parent80176b0b2c9615b6df319392ee53fbccc1347045 (diff)
receive_raw_message -> receiveRawMessage
Diffstat (limited to 'lib')
-rw-r--r--lib/implugin.php2
-rw-r--r--lib/imreceiverqueuehandler.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/implugin.php b/lib/implugin.php
index 19624095d..8cbf7d33e 100644
--- a/lib/implugin.php
+++ b/lib/implugin.php
@@ -117,7 +117,7 @@ abstract class ImPlugin extends Plugin
*
* @return boolean true if processing completed, false for temporary failures
*/
- abstract function receive_raw_message($data);
+ abstract function receiveRawMessage($data);
/**
* get the screenname of the daemon that sends and receives message for this service
diff --git a/lib/imreceiverqueuehandler.php b/lib/imreceiverqueuehandler.php
index 269c7db91..aa4a663b7 100644
--- a/lib/imreceiverqueuehandler.php
+++ b/lib/imreceiverqueuehandler.php
@@ -37,6 +37,6 @@ class ImReceiverQueueHandler extends QueueHandler
*/
function handle($data)
{
- return $this->plugin->receive_raw_message($data);
+ return $this->plugin->receiveRawMessage($data);
}
}