]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Irc/Fake_Irc.php
More info for a proper, fancy-url lighttpd setup
[quix0rs-gnu-social.git] / plugins / Irc / Fake_Irc.php
index a1e296e8b15168e936bd5dff44650147253a9764..81b867643ef15e3bb0c9de2b6885e7399e914b5a 100644 (file)
@@ -34,7 +34,14 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
 class Fake_Irc extends Phergie_Driver_Streams {
     public $would_be_sent = null;
 
+    /**
+    * Store the components for sending a command
+    *
+    * @param string $command Command
+    * @param array $args Arguments
+    * @return void
+    */
     protected function send($command, $args = '') {
-        $this->would_be_sent = array($command, $args);
+        $this->would_be_sent = array('command' => $command, 'args' => $args);
     }
 }