Continued CSV parsing:
[core.git] / inc / classes / main / database / wrapper / class_PaymentsDatabaseWrapper.php
index 95748c3a8f20100a0e96adaef590dd2ae5a5b64b..59e92fccf240d0da90947885d7c844fccbfa338c 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A database wrapper for payments
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -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();