Weaken send scope to protected

This commit is contained in:
Luke Fitzgerald 2010-07-20 06:26:51 -07:00
parent 2550971450
commit 1e5198645c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
class Fake_Irc extends Phergie_Driver_Streams {
public $would_be_sent = null;
private function send($command, $args = '') {
protected function send($command, $args = '') {
$this->would_be_sent = array($command, $args);
}
}