From 5127396325a29d6c7b8f0e1e0ae3e0580ab30dda Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 11 Feb 2009 15:46:29 -0500 Subject: [PATCH] Move Commands stuff out of classes The classes/ subdir is primarily for the DB_DataObject classes. Stuff in there can get stomped by various generation scripts. I've moved the lurkers there -- related to command-handling -- to lib/. Since auto-loading works fine with lib/, there shouldn't be much of a visible change here. --- classes/Channel.php => lib/channel.php | 0 classes/Command.php => lib/command.php | 0 classes/CommandInterpreter.php => lib/commandinterpreter.php | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename classes/Channel.php => lib/channel.php (100%) rename classes/Command.php => lib/command.php (100%) rename classes/CommandInterpreter.php => lib/commandinterpreter.php (100%) diff --git a/classes/Channel.php b/lib/channel.php similarity index 100% rename from classes/Channel.php rename to lib/channel.php diff --git a/classes/Command.php b/lib/command.php similarity index 100% rename from classes/Command.php rename to lib/command.php diff --git a/classes/CommandInterpreter.php b/lib/commandinterpreter.php similarity index 100% rename from classes/CommandInterpreter.php rename to lib/commandinterpreter.php