Fix capitalization of class names in Point module

This commit is contained in:
Kijin Sung 2023-06-19 13:42:18 +09:00
parent 2c1552a523
commit 002f62ad8f
6 changed files with 6 additions and 6 deletions

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief The admin controller class of the point module * @brief The admin controller class of the point module
*/ */
class pointAdminController extends point class PointAdminController extends Point
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief The admin view class of the point module * @brief The admin view class of the point module
*/ */
class pointAdminView extends point class PointAdminView extends Point
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief The parent class of the point module * @brief The parent class of the point module
*/ */
class point extends ModuleObject class Point extends ModuleObject
{ {
/** /**
* Cache for the point module's own configuration. * Cache for the point module's own configuration.

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief Controller class of point modules * @brief Controller class of point modules
*/ */
class pointController extends point class PointController extends Point
{ {
/** /**
* Variables for internal reference. * Variables for internal reference.

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief The model class fo the point module * @brief The model class fo the point module
*/ */
class pointModel extends point class PointModel extends Point
{ {
/** /**
* Cache for module configuration. * Cache for module configuration.

View file

@ -8,7 +8,7 @@
* POINT 2.0 format document output * POINT 2.0 format document output
* *
*/ */
class pointView extends point class PointView extends Point
{ {
/** /**
* @brief Initialization * @brief Initialization