From 0029d1a1ec3bb9d7c280c2b2395e3919200df53c Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Mon, 26 Dec 2022 16:13:09 +0900 Subject: [PATCH] Rename all common/framework source files to be case-sensitive --- common/autoload.php | 10 +++++----- common/framework/{cache.php => Cache.php} | 0 common/framework/{calendar.php => Calendar.php} | 0 common/framework/{config.php => Config.php} | 0 common/framework/{db.php => DB.php} | 0 common/framework/{datetime.php => DateTime.php} | 0 common/framework/{debug.php => Debug.php} | 0 common/framework/{exception.php => Exception.php} | 0 common/framework/{formatter.php => Formatter.php} | 0 common/framework/{image.php => Image.php} | 0 common/framework/{korea.php => Korea.php} | 0 common/framework/{lang.php => Lang.php} | 0 common/framework/{mime.php => MIME.php} | 0 common/framework/{mail.php => Mail.php} | 0 common/framework/{pagination.php => Pagination.php} | 0 common/framework/{password.php => Password.php} | 0 common/framework/{push.php => Push.php} | 0 common/framework/{router.php => Router.php} | 0 common/framework/{sms.php => SMS.php} | 0 common/framework/{security.php => Security.php} | 0 common/framework/{session.php => Session.php} | 0 common/framework/{storage.php => Storage.php} | 0 common/framework/{timer.php => Timer.php} | 0 common/framework/{ua.php => UA.php} | 0 common/framework/{url.php => URL.php} | 0 .../drivers/{cacheinterface.php => CacheInterface.php} | 0 .../drivers/{mailinterface.php => MailInterface.php} | 0 .../drivers/{pushinterface.php => PushInterface.php} | 0 .../drivers/{smsinterface.php => SMSInterface.php} | 0 .../framework/exceptions/{dberror.php => DBError.php} | 0 .../{featuredisabled.php => FeatureDisabled.php} | 0 .../{invalidrequest.php => InvalidRequest.php} | 0 .../exceptions/{mustlogin.php => MustLogin.php} | 0 .../exceptions/{notpermitted.php => NotPermitted.php} | 0 .../exceptions/{queryerror.php => QueryError.php} | 0 .../{securityviolation.php => SecurityViolation.php} | 0 .../{targetnotfound.php => TargetNotFound.php} | 0 .../{filecontentfilter.php => FileContentFilter.php} | 0 .../filters/{filenamefilter.php => FilenameFilter.php} | 0 .../filters/{htmlfilter.php => HTMLFilter.php} | 0 .../framework/filters/{ipfilter.php => IpFilter.php} | 0 .../filters/{mediafilter.php => MediaFilter.php} | 0 .../helpers/{confighelper.php => ConfigHelper.php} | 0 .../framework/helpers/{dbhelper.php => DBHelper.php} | 0 .../helpers/{dbresulthelper.php => DBResultHelper.php} | 0 .../helpers/{dbstmthelper.php => DBStmtHelper.php} | 0 .../helpers/{sessionhelper.php => SessionHelper.php} | 0 .../parsers/{baseparser.php => BaseParser.php} | 0 .../parsers/{configparser.php => ConfigParser.php} | 0 .../parsers/{dbqueryparser.php => DBQueryParser.php} | 0 .../parsers/{dbtableparser.php => DBTableParser.php} | 0 ...orcomponentparser.php => EditorComponentParser.php} | 0 .../parsers/{langparser.php => LangParser.php} | 0 .../{moduleactionparser.php => ModuleActionParser.php} | 0 .../{moduleinfoparser.php => ModuleInfoParser.php} | 0 .../parsers/{xmlrpcparser.php => XMLRPCParser.php} | 0 .../parsers/dbquery/{columnread.php => ColumnRead.php} | 0 .../dbquery/{columnwrite.php => ColumnWrite.php} | 0 .../parsers/dbquery/{condition.php => Condition.php} | 0 .../dbquery/{conditiongroup.php => ConditionGroup.php} | 0 .../dbquery/{emptystring.php => EmptyString.php} | 0 .../parsers/dbquery/{groupby.php => GroupBy.php} | 0 .../parsers/dbquery/{indexhint.php => IndexHint.php} | 0 .../parsers/dbquery/{navigation.php => Navigation.php} | 0 .../parsers/dbquery/{nullvalue.php => NullValue.php} | 0 .../parsers/dbquery/{orderby.php => OrderBy.php} | 0 .../framework/parsers/dbquery/{query.php => Query.php} | 0 .../framework/parsers/dbquery/{table.php => Table.php} | 0 .../dbquery/{variablebase.php => VariableBase.php} | 0 .../parsers/dbtable/{column.php => Column.php} | 0 .../parsers/dbtable/{constraint.php => Constraint.php} | 0 .../framework/parsers/dbtable/{index.php => Index.php} | 0 .../framework/parsers/dbtable/{table.php => Table.php} | 0 73 files changed, 5 insertions(+), 5 deletions(-) rename common/framework/{cache.php => Cache.php} (100%) rename common/framework/{calendar.php => Calendar.php} (100%) rename common/framework/{config.php => Config.php} (100%) rename common/framework/{db.php => DB.php} (100%) rename common/framework/{datetime.php => DateTime.php} (100%) rename common/framework/{debug.php => Debug.php} (100%) rename common/framework/{exception.php => Exception.php} (100%) rename common/framework/{formatter.php => Formatter.php} (100%) rename common/framework/{image.php => Image.php} (100%) rename common/framework/{korea.php => Korea.php} (100%) rename common/framework/{lang.php => Lang.php} (100%) rename common/framework/{mime.php => MIME.php} (100%) rename common/framework/{mail.php => Mail.php} (100%) rename common/framework/{pagination.php => Pagination.php} (100%) rename common/framework/{password.php => Password.php} (100%) rename common/framework/{push.php => Push.php} (100%) rename common/framework/{router.php => Router.php} (100%) rename common/framework/{sms.php => SMS.php} (100%) rename common/framework/{security.php => Security.php} (100%) rename common/framework/{session.php => Session.php} (100%) rename common/framework/{storage.php => Storage.php} (100%) rename common/framework/{timer.php => Timer.php} (100%) rename common/framework/{ua.php => UA.php} (100%) rename common/framework/{url.php => URL.php} (100%) rename common/framework/drivers/{cacheinterface.php => CacheInterface.php} (100%) rename common/framework/drivers/{mailinterface.php => MailInterface.php} (100%) rename common/framework/drivers/{pushinterface.php => PushInterface.php} (100%) rename common/framework/drivers/{smsinterface.php => SMSInterface.php} (100%) rename common/framework/exceptions/{dberror.php => DBError.php} (100%) rename common/framework/exceptions/{featuredisabled.php => FeatureDisabled.php} (100%) rename common/framework/exceptions/{invalidrequest.php => InvalidRequest.php} (100%) rename common/framework/exceptions/{mustlogin.php => MustLogin.php} (100%) rename common/framework/exceptions/{notpermitted.php => NotPermitted.php} (100%) rename common/framework/exceptions/{queryerror.php => QueryError.php} (100%) rename common/framework/exceptions/{securityviolation.php => SecurityViolation.php} (100%) rename common/framework/exceptions/{targetnotfound.php => TargetNotFound.php} (100%) rename common/framework/filters/{filecontentfilter.php => FileContentFilter.php} (100%) rename common/framework/filters/{filenamefilter.php => FilenameFilter.php} (100%) rename common/framework/filters/{htmlfilter.php => HTMLFilter.php} (100%) rename common/framework/filters/{ipfilter.php => IpFilter.php} (100%) rename common/framework/filters/{mediafilter.php => MediaFilter.php} (100%) rename common/framework/helpers/{confighelper.php => ConfigHelper.php} (100%) rename common/framework/helpers/{dbhelper.php => DBHelper.php} (100%) rename common/framework/helpers/{dbresulthelper.php => DBResultHelper.php} (100%) rename common/framework/helpers/{dbstmthelper.php => DBStmtHelper.php} (100%) rename common/framework/helpers/{sessionhelper.php => SessionHelper.php} (100%) rename common/framework/parsers/{baseparser.php => BaseParser.php} (100%) rename common/framework/parsers/{configparser.php => ConfigParser.php} (100%) rename common/framework/parsers/{dbqueryparser.php => DBQueryParser.php} (100%) rename common/framework/parsers/{dbtableparser.php => DBTableParser.php} (100%) rename common/framework/parsers/{editorcomponentparser.php => EditorComponentParser.php} (100%) rename common/framework/parsers/{langparser.php => LangParser.php} (100%) rename common/framework/parsers/{moduleactionparser.php => ModuleActionParser.php} (100%) rename common/framework/parsers/{moduleinfoparser.php => ModuleInfoParser.php} (100%) rename common/framework/parsers/{xmlrpcparser.php => XMLRPCParser.php} (100%) rename common/framework/parsers/dbquery/{columnread.php => ColumnRead.php} (100%) rename common/framework/parsers/dbquery/{columnwrite.php => ColumnWrite.php} (100%) rename common/framework/parsers/dbquery/{condition.php => Condition.php} (100%) rename common/framework/parsers/dbquery/{conditiongroup.php => ConditionGroup.php} (100%) rename common/framework/parsers/dbquery/{emptystring.php => EmptyString.php} (100%) rename common/framework/parsers/dbquery/{groupby.php => GroupBy.php} (100%) rename common/framework/parsers/dbquery/{indexhint.php => IndexHint.php} (100%) rename common/framework/parsers/dbquery/{navigation.php => Navigation.php} (100%) rename common/framework/parsers/dbquery/{nullvalue.php => NullValue.php} (100%) rename common/framework/parsers/dbquery/{orderby.php => OrderBy.php} (100%) rename common/framework/parsers/dbquery/{query.php => Query.php} (100%) rename common/framework/parsers/dbquery/{table.php => Table.php} (100%) rename common/framework/parsers/dbquery/{variablebase.php => VariableBase.php} (100%) rename common/framework/parsers/dbtable/{column.php => Column.php} (100%) rename common/framework/parsers/dbtable/{constraint.php => Constraint.php} (100%) rename common/framework/parsers/dbtable/{index.php => Index.php} (100%) rename common/framework/parsers/dbtable/{table.php => Table.php} (100%) diff --git a/common/autoload.php b/common/autoload.php index aeb09d98c..b9a6db8cd 100644 --- a/common/autoload.php +++ b/common/autoload.php @@ -164,11 +164,11 @@ require_once RX_BASEDIR . 'vendor/autoload.php'; */ require_once RX_BASEDIR . 'classes/context/Context.class.php'; require_once RX_BASEDIR . 'classes/object/Object.class.php'; -require_once RX_BASEDIR . 'common/framework/cache.php'; -require_once RX_BASEDIR . 'common/framework/config.php'; -require_once RX_BASEDIR . 'common/framework/datetime.php'; -require_once RX_BASEDIR . 'common/framework/debug.php'; -require_once RX_BASEDIR . 'common/framework/lang.php'; +require_once RX_BASEDIR . 'common/framework/Cache.php'; +require_once RX_BASEDIR . 'common/framework/Config.php'; +require_once RX_BASEDIR . 'common/framework/DateTime.php'; +require_once RX_BASEDIR . 'common/framework/Debug.php'; +require_once RX_BASEDIR . 'common/framework/Lang.php'; /** * Load user configuration. diff --git a/common/framework/cache.php b/common/framework/Cache.php similarity index 100% rename from common/framework/cache.php rename to common/framework/Cache.php diff --git a/common/framework/calendar.php b/common/framework/Calendar.php similarity index 100% rename from common/framework/calendar.php rename to common/framework/Calendar.php diff --git a/common/framework/config.php b/common/framework/Config.php similarity index 100% rename from common/framework/config.php rename to common/framework/Config.php diff --git a/common/framework/db.php b/common/framework/DB.php similarity index 100% rename from common/framework/db.php rename to common/framework/DB.php diff --git a/common/framework/datetime.php b/common/framework/DateTime.php similarity index 100% rename from common/framework/datetime.php rename to common/framework/DateTime.php diff --git a/common/framework/debug.php b/common/framework/Debug.php similarity index 100% rename from common/framework/debug.php rename to common/framework/Debug.php diff --git a/common/framework/exception.php b/common/framework/Exception.php similarity index 100% rename from common/framework/exception.php rename to common/framework/Exception.php diff --git a/common/framework/formatter.php b/common/framework/Formatter.php similarity index 100% rename from common/framework/formatter.php rename to common/framework/Formatter.php diff --git a/common/framework/image.php b/common/framework/Image.php similarity index 100% rename from common/framework/image.php rename to common/framework/Image.php diff --git a/common/framework/korea.php b/common/framework/Korea.php similarity index 100% rename from common/framework/korea.php rename to common/framework/Korea.php diff --git a/common/framework/lang.php b/common/framework/Lang.php similarity index 100% rename from common/framework/lang.php rename to common/framework/Lang.php diff --git a/common/framework/mime.php b/common/framework/MIME.php similarity index 100% rename from common/framework/mime.php rename to common/framework/MIME.php diff --git a/common/framework/mail.php b/common/framework/Mail.php similarity index 100% rename from common/framework/mail.php rename to common/framework/Mail.php diff --git a/common/framework/pagination.php b/common/framework/Pagination.php similarity index 100% rename from common/framework/pagination.php rename to common/framework/Pagination.php diff --git a/common/framework/password.php b/common/framework/Password.php similarity index 100% rename from common/framework/password.php rename to common/framework/Password.php diff --git a/common/framework/push.php b/common/framework/Push.php similarity index 100% rename from common/framework/push.php rename to common/framework/Push.php diff --git a/common/framework/router.php b/common/framework/Router.php similarity index 100% rename from common/framework/router.php rename to common/framework/Router.php diff --git a/common/framework/sms.php b/common/framework/SMS.php similarity index 100% rename from common/framework/sms.php rename to common/framework/SMS.php diff --git a/common/framework/security.php b/common/framework/Security.php similarity index 100% rename from common/framework/security.php rename to common/framework/Security.php diff --git a/common/framework/session.php b/common/framework/Session.php similarity index 100% rename from common/framework/session.php rename to common/framework/Session.php diff --git a/common/framework/storage.php b/common/framework/Storage.php similarity index 100% rename from common/framework/storage.php rename to common/framework/Storage.php diff --git a/common/framework/timer.php b/common/framework/Timer.php similarity index 100% rename from common/framework/timer.php rename to common/framework/Timer.php diff --git a/common/framework/ua.php b/common/framework/UA.php similarity index 100% rename from common/framework/ua.php rename to common/framework/UA.php diff --git a/common/framework/url.php b/common/framework/URL.php similarity index 100% rename from common/framework/url.php rename to common/framework/URL.php diff --git a/common/framework/drivers/cacheinterface.php b/common/framework/drivers/CacheInterface.php similarity index 100% rename from common/framework/drivers/cacheinterface.php rename to common/framework/drivers/CacheInterface.php diff --git a/common/framework/drivers/mailinterface.php b/common/framework/drivers/MailInterface.php similarity index 100% rename from common/framework/drivers/mailinterface.php rename to common/framework/drivers/MailInterface.php diff --git a/common/framework/drivers/pushinterface.php b/common/framework/drivers/PushInterface.php similarity index 100% rename from common/framework/drivers/pushinterface.php rename to common/framework/drivers/PushInterface.php diff --git a/common/framework/drivers/smsinterface.php b/common/framework/drivers/SMSInterface.php similarity index 100% rename from common/framework/drivers/smsinterface.php rename to common/framework/drivers/SMSInterface.php diff --git a/common/framework/exceptions/dberror.php b/common/framework/exceptions/DBError.php similarity index 100% rename from common/framework/exceptions/dberror.php rename to common/framework/exceptions/DBError.php diff --git a/common/framework/exceptions/featuredisabled.php b/common/framework/exceptions/FeatureDisabled.php similarity index 100% rename from common/framework/exceptions/featuredisabled.php rename to common/framework/exceptions/FeatureDisabled.php diff --git a/common/framework/exceptions/invalidrequest.php b/common/framework/exceptions/InvalidRequest.php similarity index 100% rename from common/framework/exceptions/invalidrequest.php rename to common/framework/exceptions/InvalidRequest.php diff --git a/common/framework/exceptions/mustlogin.php b/common/framework/exceptions/MustLogin.php similarity index 100% rename from common/framework/exceptions/mustlogin.php rename to common/framework/exceptions/MustLogin.php diff --git a/common/framework/exceptions/notpermitted.php b/common/framework/exceptions/NotPermitted.php similarity index 100% rename from common/framework/exceptions/notpermitted.php rename to common/framework/exceptions/NotPermitted.php diff --git a/common/framework/exceptions/queryerror.php b/common/framework/exceptions/QueryError.php similarity index 100% rename from common/framework/exceptions/queryerror.php rename to common/framework/exceptions/QueryError.php diff --git a/common/framework/exceptions/securityviolation.php b/common/framework/exceptions/SecurityViolation.php similarity index 100% rename from common/framework/exceptions/securityviolation.php rename to common/framework/exceptions/SecurityViolation.php diff --git a/common/framework/exceptions/targetnotfound.php b/common/framework/exceptions/TargetNotFound.php similarity index 100% rename from common/framework/exceptions/targetnotfound.php rename to common/framework/exceptions/TargetNotFound.php diff --git a/common/framework/filters/filecontentfilter.php b/common/framework/filters/FileContentFilter.php similarity index 100% rename from common/framework/filters/filecontentfilter.php rename to common/framework/filters/FileContentFilter.php diff --git a/common/framework/filters/filenamefilter.php b/common/framework/filters/FilenameFilter.php similarity index 100% rename from common/framework/filters/filenamefilter.php rename to common/framework/filters/FilenameFilter.php diff --git a/common/framework/filters/htmlfilter.php b/common/framework/filters/HTMLFilter.php similarity index 100% rename from common/framework/filters/htmlfilter.php rename to common/framework/filters/HTMLFilter.php diff --git a/common/framework/filters/ipfilter.php b/common/framework/filters/IpFilter.php similarity index 100% rename from common/framework/filters/ipfilter.php rename to common/framework/filters/IpFilter.php diff --git a/common/framework/filters/mediafilter.php b/common/framework/filters/MediaFilter.php similarity index 100% rename from common/framework/filters/mediafilter.php rename to common/framework/filters/MediaFilter.php diff --git a/common/framework/helpers/confighelper.php b/common/framework/helpers/ConfigHelper.php similarity index 100% rename from common/framework/helpers/confighelper.php rename to common/framework/helpers/ConfigHelper.php diff --git a/common/framework/helpers/dbhelper.php b/common/framework/helpers/DBHelper.php similarity index 100% rename from common/framework/helpers/dbhelper.php rename to common/framework/helpers/DBHelper.php diff --git a/common/framework/helpers/dbresulthelper.php b/common/framework/helpers/DBResultHelper.php similarity index 100% rename from common/framework/helpers/dbresulthelper.php rename to common/framework/helpers/DBResultHelper.php diff --git a/common/framework/helpers/dbstmthelper.php b/common/framework/helpers/DBStmtHelper.php similarity index 100% rename from common/framework/helpers/dbstmthelper.php rename to common/framework/helpers/DBStmtHelper.php diff --git a/common/framework/helpers/sessionhelper.php b/common/framework/helpers/SessionHelper.php similarity index 100% rename from common/framework/helpers/sessionhelper.php rename to common/framework/helpers/SessionHelper.php diff --git a/common/framework/parsers/baseparser.php b/common/framework/parsers/BaseParser.php similarity index 100% rename from common/framework/parsers/baseparser.php rename to common/framework/parsers/BaseParser.php diff --git a/common/framework/parsers/configparser.php b/common/framework/parsers/ConfigParser.php similarity index 100% rename from common/framework/parsers/configparser.php rename to common/framework/parsers/ConfigParser.php diff --git a/common/framework/parsers/dbqueryparser.php b/common/framework/parsers/DBQueryParser.php similarity index 100% rename from common/framework/parsers/dbqueryparser.php rename to common/framework/parsers/DBQueryParser.php diff --git a/common/framework/parsers/dbtableparser.php b/common/framework/parsers/DBTableParser.php similarity index 100% rename from common/framework/parsers/dbtableparser.php rename to common/framework/parsers/DBTableParser.php diff --git a/common/framework/parsers/editorcomponentparser.php b/common/framework/parsers/EditorComponentParser.php similarity index 100% rename from common/framework/parsers/editorcomponentparser.php rename to common/framework/parsers/EditorComponentParser.php diff --git a/common/framework/parsers/langparser.php b/common/framework/parsers/LangParser.php similarity index 100% rename from common/framework/parsers/langparser.php rename to common/framework/parsers/LangParser.php diff --git a/common/framework/parsers/moduleactionparser.php b/common/framework/parsers/ModuleActionParser.php similarity index 100% rename from common/framework/parsers/moduleactionparser.php rename to common/framework/parsers/ModuleActionParser.php diff --git a/common/framework/parsers/moduleinfoparser.php b/common/framework/parsers/ModuleInfoParser.php similarity index 100% rename from common/framework/parsers/moduleinfoparser.php rename to common/framework/parsers/ModuleInfoParser.php diff --git a/common/framework/parsers/xmlrpcparser.php b/common/framework/parsers/XMLRPCParser.php similarity index 100% rename from common/framework/parsers/xmlrpcparser.php rename to common/framework/parsers/XMLRPCParser.php diff --git a/common/framework/parsers/dbquery/columnread.php b/common/framework/parsers/dbquery/ColumnRead.php similarity index 100% rename from common/framework/parsers/dbquery/columnread.php rename to common/framework/parsers/dbquery/ColumnRead.php diff --git a/common/framework/parsers/dbquery/columnwrite.php b/common/framework/parsers/dbquery/ColumnWrite.php similarity index 100% rename from common/framework/parsers/dbquery/columnwrite.php rename to common/framework/parsers/dbquery/ColumnWrite.php diff --git a/common/framework/parsers/dbquery/condition.php b/common/framework/parsers/dbquery/Condition.php similarity index 100% rename from common/framework/parsers/dbquery/condition.php rename to common/framework/parsers/dbquery/Condition.php diff --git a/common/framework/parsers/dbquery/conditiongroup.php b/common/framework/parsers/dbquery/ConditionGroup.php similarity index 100% rename from common/framework/parsers/dbquery/conditiongroup.php rename to common/framework/parsers/dbquery/ConditionGroup.php diff --git a/common/framework/parsers/dbquery/emptystring.php b/common/framework/parsers/dbquery/EmptyString.php similarity index 100% rename from common/framework/parsers/dbquery/emptystring.php rename to common/framework/parsers/dbquery/EmptyString.php diff --git a/common/framework/parsers/dbquery/groupby.php b/common/framework/parsers/dbquery/GroupBy.php similarity index 100% rename from common/framework/parsers/dbquery/groupby.php rename to common/framework/parsers/dbquery/GroupBy.php diff --git a/common/framework/parsers/dbquery/indexhint.php b/common/framework/parsers/dbquery/IndexHint.php similarity index 100% rename from common/framework/parsers/dbquery/indexhint.php rename to common/framework/parsers/dbquery/IndexHint.php diff --git a/common/framework/parsers/dbquery/navigation.php b/common/framework/parsers/dbquery/Navigation.php similarity index 100% rename from common/framework/parsers/dbquery/navigation.php rename to common/framework/parsers/dbquery/Navigation.php diff --git a/common/framework/parsers/dbquery/nullvalue.php b/common/framework/parsers/dbquery/NullValue.php similarity index 100% rename from common/framework/parsers/dbquery/nullvalue.php rename to common/framework/parsers/dbquery/NullValue.php diff --git a/common/framework/parsers/dbquery/orderby.php b/common/framework/parsers/dbquery/OrderBy.php similarity index 100% rename from common/framework/parsers/dbquery/orderby.php rename to common/framework/parsers/dbquery/OrderBy.php diff --git a/common/framework/parsers/dbquery/query.php b/common/framework/parsers/dbquery/Query.php similarity index 100% rename from common/framework/parsers/dbquery/query.php rename to common/framework/parsers/dbquery/Query.php diff --git a/common/framework/parsers/dbquery/table.php b/common/framework/parsers/dbquery/Table.php similarity index 100% rename from common/framework/parsers/dbquery/table.php rename to common/framework/parsers/dbquery/Table.php diff --git a/common/framework/parsers/dbquery/variablebase.php b/common/framework/parsers/dbquery/VariableBase.php similarity index 100% rename from common/framework/parsers/dbquery/variablebase.php rename to common/framework/parsers/dbquery/VariableBase.php diff --git a/common/framework/parsers/dbtable/column.php b/common/framework/parsers/dbtable/Column.php similarity index 100% rename from common/framework/parsers/dbtable/column.php rename to common/framework/parsers/dbtable/Column.php diff --git a/common/framework/parsers/dbtable/constraint.php b/common/framework/parsers/dbtable/Constraint.php similarity index 100% rename from common/framework/parsers/dbtable/constraint.php rename to common/framework/parsers/dbtable/Constraint.php diff --git a/common/framework/parsers/dbtable/index.php b/common/framework/parsers/dbtable/Index.php similarity index 100% rename from common/framework/parsers/dbtable/index.php rename to common/framework/parsers/dbtable/Index.php diff --git a/common/framework/parsers/dbtable/table.php b/common/framework/parsers/dbtable/Table.php similarity index 100% rename from common/framework/parsers/dbtable/table.php rename to common/framework/parsers/dbtable/Table.php