[TASK] Made all constuctors and destructors public.

[TASK] Added some DocComments for the IrcClient.
This commit is contained in:
Jan Philipp Timme
2010-12-18 14:42:56 +00:00
parent 03a4dfff71
commit 26036e9994
11 changed files with 39 additions and 16 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ class Connection_ConnectionPool {
* Creates an Instance of SocketPool
* @return void
*/
function __construct() {
public function __construct() {
$this->connectionHandlers = array();
$this->socketPool = new Socket_SocketPool();
$this->nextID = 1;
@@ -38,7 +38,7 @@ class Connection_ConnectionPool {
* Destroys the SocketPool
* @return void
*/
function __destruct() {
public function __destruct() {
unset($this->socketPool);
}