123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- class FakeIrc extends Phergie_Driver_Streams {
- public $would_be_sent = null;
-
- protected function send($command, $args = '') {
- $this->would_be_sent = array('command' => $command, 'args' => $args);
- }
- }
|