]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/database/wrapper/class_NewsDatabaseWrapper.php
Was to noisy.
[core.git] / inc / classes / main / database / wrapper / class_NewsDatabaseWrapper.php
index 9a87e6a701c79e3e949d56dcf881c8678311d105..976437413239f778f6830ead1776aed6c9654acd 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A database wrapper for news classes
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 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
  */
 class NewsDatabaseWrapper extends BaseDatabaseWrapper {
        // Constants for database table names
-       const DB_TABLE_NEWS = "news";
+       const DB_TABLE_NEWS = 'news';
 
        /**
         * Protected constructor
         *
         * @return      void
         */
-       protected function __construct() {
+       protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -40,7 +40,7 @@ class NewsDatabaseWrapper extends BaseDatabaseWrapper {
         *
         * @return      $wrapperInstance        An instance of the created wrapper class
         */
-       public final static function createNewsDatabaseWrapper () {
+       public static final function createNewsDatabaseWrapper () {
                // Get a new instance
                $wrapperInstance = new NewsDatabaseWrapper();