]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/database/wrapper/class_UserPointsDatabaseWrapper.php
Incomplete SocketRegistry class added, code cosmetics applied
[core.git] / inc / classes / main / database / wrapper / class_UserPointsDatabaseWrapper.php
index dbf004346ca49e55cbe7ef239d062e1601379965..33f24dde8af7790bd579ff451b150b062916a931 100644 (file)
@@ -25,24 +25,24 @@ class UserPointsDatabaseWrapper extends BaseDatabaseWrapper implements BookableP
        /**
         * Constants for database table names
         */
-       const DB_TABLE_USER_POINTS = "user_points";
+       const DB_TABLE_USER_POINTS = 'user_points';
 
        /**
         * Name of the user->points column
         */
-       const DB_COLUMN_POINTS_UID = "points_uid";
+       const DB_COLUMN_POINTS_UID = 'points_uid';
 
        /**
         * Name of the points column
         */
-       const DB_COLUMN_POINTS = "points";
+       const DB_COLUMN_POINTS = 'points';
 
        /**
         * Protected constructor
         *
         * @return      void
         */
-       protected function __construct() {
+       protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }