--- /dev/null
+<?php\r
+/**\r
+ * StatusNet - the distributed open-source microblogging tool\r
+ *\r
+ * This program is free software: you can redistribute it and/or modify\r
+ * it under the terms of the GNU Affero General Public License as published by\r
+ * the Free Software Foundation, either version 3 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
+ * GNU Affero General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU Affero General Public License\r
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.\r
+ *\r
+ * Calls the given Statusnet IM architecture enqueuing method to enqueue\r
+ * a new incoming message\r
+ *\r
+ * @category Phergie\r
+ * @package Phergie_Driver_Statusnet\r
+ * @author Luke Fitzgerald <lw.fitzgerald@googlemail.com\r
+ * @copyright 2010 StatusNet, Inc.\r
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0\r
+ * @link http://status.net/\r
+ */\r
+\r
+class Phergie_Driver_Statusnet extends Phergie_Driver_Streams {\r
+ /**\r
+ * Handles construction of command strings and their transmission to the\r
+ * server.\r
+ *\r
+ * @param string $command Command to send\r
+ * @param string|array $args Optional string or array of sequential\r
+ * arguments\r
+ *\r
+ * @return string Command string that was sent\r
+ * @throws Phergie_Driver_Exception\r
+ */\r
+ public function send($command, $args = '') {\r
+ return parent::send($command, $args);\r
+ }\r
+\r
+ /**\r
+ * Returns the array of sockets\r
+ *\r
+ * @return array Array of socket resources\r
+ */\r
+ public function getSockets() {\r
+ return $this->sockets;\r
+ }\r
+}
\ No newline at end of file