}
}
-class FollowingCommand extends Command
+class SubscriptionsCommand extends Command
{
function execute($channel)
{
}
}
-class FollowersCommand extends Command
+class SubscribersCommand extends Command
{
function execute($channel)
{
"off - turn off notifications\n".
"help - show this help\n".
"follow <nickname> - subscribe to user\n".
- "following - list the people you follow\n".
- "followers - list the people that follow you\n".
+ "subscriptions - list the people you follow\n".
+ "subscribers - list the people that follow you\n".
"leave <nickname> - unsubscribe from user\n".
"d <nickname> <text> - direct message to user\n".
"get <nickname> - get last notice from user\n".
} else {
return new LoginCommand($user);
}
- case 'followers':
+ case 'subscribers':
if ($arg) {
return null;
} else {
- return new FollowersCommand($user);
+ return new SubscribersCommand($user);
}
- case 'following':
+ case 'subscriptions':
if ($arg) {
return null;
} else {
- return new FollowingCommand($user);
+ return new SubscriptionsCommand($user);
}
case 'on':
if ($arg) {