mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Change the switch class to freeswitch.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
class Buffer {
|
||||
class buffer {
|
||||
private $content;
|
||||
private $eol;
|
||||
|
||||
@@ -37,7 +37,7 @@ class Buffer {
|
||||
return $tmp;
|
||||
}
|
||||
}
|
||||
//$b = new Buffer;
|
||||
//$b = new buffer;
|
||||
//$b->append("hello\nworld\n");
|
||||
//print($b->read_line());
|
||||
//print($b->read_line());
|
||||
@@ -47,7 +47,7 @@ class event_socket {
|
||||
private $fp;
|
||||
|
||||
public function __construct($fp = false) {
|
||||
$this->buffer = new Buffer;
|
||||
$this->buffer = new buffer;
|
||||
$this->fp = $fp;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user