. * * @category Network * @package StatusNet * @author Luke Fitzgerald * @copyright 2010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } 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' => $command, 'args' => $args); } }