]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/database/wrapper/class_PaymentsDatabaseWrapper.php
Copyright updated
[core.git] / inc / classes / main / database / wrapper / class_PaymentsDatabaseWrapper.php
index 68281da5f62ced4e77515c47900253659ea096b8..b8e2f094f74a59bf4ee5e557e1120ad22ae5da61 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -26,14 +26,14 @@ class PaymentsDatabaseWrapper extends BaseDatabaseWrapper {
        const EXCEPTION_CLIENT_USERNAME_NOT_FOUND = 0x180;
 
        // Constants for database table names
-       const DB_TABLE_PAYMENTS = "payments";
+       const DB_TABLE_PAYMENTS = 'payments';
 
        /**
         * Protected constructor
         *
         * @return      void
         */
-       protected function __construct() {
+       protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -43,7 +43,7 @@ class PaymentsDatabaseWrapper extends BaseDatabaseWrapper {
         *
         * @return      $wrapperInstance        An instance of the created wrapper class
         */
-       public final static function createPaymentsDatabaseWrapper () {
+       public static final function createPaymentsDatabaseWrapper () {
                // Get a new instance
                $wrapperInstance = new PaymentsDatabaseWrapper();