[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
+24 -1
View File
@@ -7,18 +7,41 @@
*/
class Client_IrcClient extends Client_AbstractClient {
/**
* @var boolean
*/
protected $got_001;
/**
* @var boolean
*/
protected $joined;
/**
* @var boolean
*/
protected $authed;
/**
* @var string
*/
protected $nick;
/**
* @var array
*/
protected $channels;
/**
* @var int
*/
protected $lines;
/**
* Default constructor.
* @return void
*/
function __construct() {
public function __construct() {
$this->nick = "Serena";
$this->channels = array();
$this->resetConnectionStatus();