summaryrefslogtreecommitdiff
path: root/classes/Command.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-12-23 14:21:29 -0500
committerEvan Prodromou <evan@prodromou.name>2008-12-23 14:21:29 -0500
commiteb2f9c98ac115ce67e9a740b200c832153ffa05c (patch)
tree562e524f12420a97fc66a5c9db0ccd6a1f9aea09 /classes/Command.php
parentedbc0c665cc65875b4d14b79939233b1c9c06bb6 (diff)
replace NULL with null
Another global search-and-replace update. Here, I've replaced the PHP keyword 'NULL' with its lowercase version. This is another PEAR code standards change. darcs-hash:20081223192129-84dde-4a0182e0ec16a01ad88745ad3e08f7cb501aee0b.gz
Diffstat (limited to 'classes/Command.php')
-rw-r--r--classes/Command.php34
1 files changed, 17 insertions, 17 deletions
diff --git a/classes/Command.php b/classes/Command.php
index ff44b9d1e..b146005a7 100644
--- a/classes/Command.php
+++ b/classes/Command.php
@@ -23,9 +23,9 @@ require_once(INSTALLDIR.'/classes/Channel.php');
class Command {
- var $user = NULL;
+ var $user = null;
- function __construct($user=NULL) {
+ function __construct($user=null) {
$this->user = $user;
}
@@ -47,7 +47,7 @@ class TrackOffCommand extends UnimplementedCommand {
}
class TrackCommand extends UnimplementedCommand {
- var $word = NULL;
+ var $word = null;
function __construct($user, $word) {
parent::__construct($user);
$this->word = $word;
@@ -55,7 +55,7 @@ class TrackCommand extends UnimplementedCommand {
}
class UntrackCommand extends UnimplementedCommand {
- var $word = NULL;
+ var $word = null;
function __construct($user, $word) {
parent::__construct($user);
$this->word = $word;
@@ -63,7 +63,7 @@ class UntrackCommand extends UnimplementedCommand {
}
class NudgeCommand extends UnimplementedCommand {
- var $other = NULL;
+ var $other = null;
function __construct($user, $other) {
parent::__construct($user);
$this->other = $other;
@@ -71,7 +71,7 @@ class NudgeCommand extends UnimplementedCommand {
}
class InviteCommand extends UnimplementedCommand {
- var $other = NULL;
+ var $other = null;
function __construct($user, $other) {
parent::__construct($user);
$this->other = $other;
@@ -104,7 +104,7 @@ class StatsCommand extends Command {
class FavCommand extends Command {
- var $other = NULL;
+ var $other = null;
function __construct($user, $other) {
parent::__construct($user);
@@ -148,7 +148,7 @@ class FavCommand extends Command {
}
class WhoisCommand extends Command {
- var $other = NULL;
+ var $other = null;
function __construct($user, $other) {
parent::__construct($user);
$this->other = $other;
@@ -182,8 +182,8 @@ class WhoisCommand extends Command {
}
class MessageCommand extends Command {
- var $other = NULL;
- var $text = NULL;
+ var $other = null;
+ var $text = null;
function __construct($user, $other, $text) {
parent::__construct($user);
$this->other = $other;
@@ -225,7 +225,7 @@ class MessageCommand extends Command {
class GetCommand extends Command {
- var $other = NULL;
+ var $other = null;
function __construct($user, $other) {
parent::__construct($user);
@@ -255,7 +255,7 @@ class GetCommand extends Command {
class SubCommand extends Command {
- var $other = NULL;
+ var $other = null;
function __construct($user, $other) {
parent::__construct($user);
@@ -281,7 +281,7 @@ class SubCommand extends Command {
class UnsubCommand extends Command {
- var $other = NULL;
+ var $other = null;
function __construct($user, $other) {
parent::__construct($user);
@@ -305,8 +305,8 @@ class UnsubCommand extends Command {
}
class OffCommand extends Command {
- var $other = NULL;
- function __construct($user, $other=NULL) {
+ var $other = null;
+ function __construct($user, $other=null) {
parent::__construct($user);
$this->other = $other;
}
@@ -324,8 +324,8 @@ class OffCommand extends Command {
}
class OnCommand extends Command {
- var $other = NULL;
- function __construct($user, $other=NULL) {
+ var $other = null;
+ function __construct($user, $other=null) {
parent::__construct($user);
$this->other = $other;
}