Fix incorrectly capitalized class names in message module

This commit is contained in:
Kijin Sung 2022-12-27 23:14:23 +09:00
parent 97e14fee65
commit a55ba4fab9
6 changed files with 7 additions and 6 deletions

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief admin controller class of message module * @brief admin controller class of message module
*/ */
class messageAdminController extends message class MessageAdminController extends Message
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -1,6 +1,7 @@
<?php <?php
/* Copyright (C) NAVER <http://www.navercorp.com> */ /* Copyright (C) NAVER <http://www.navercorp.com> */
class messageAdminModel extends message{ class MessageAdminModel extends Message
{
public function getMessageAdminColorset() public function getMessageAdminColorset()
{ {
$skin = Context::get('skin'); $skin = Context::get('skin');

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief admin view class of the message module * @brief admin view class of the message module
*/ */
class messageAdminView extends message class MessageAdminView extends Message
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief high class of message module * @brief high class of message module
*/ */
class message extends ModuleObject class Message extends ModuleObject
{ {
/** /**
* @brief Implement if additional tasks are necessary when installing * @brief Implement if additional tasks are necessary when installing

View file

@ -1,7 +1,7 @@
<?php <?php
/* Copyright (C) NAVER <http://www.navercorp.com> */ /* Copyright (C) NAVER <http://www.navercorp.com> */
class messageMobile extends messageView class MessageMobile extends MessageView
{ {
} }

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief view class of the message module * @brief view class of the message module
*/ */
class messageView extends message class MessageView extends Message
{ {
/** /**
* @brief Initialization * @brief Initialization