Standardisation of file headers
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 1 Aug 2010 21:13:44 +0000 (21:13 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 1 Aug 2010 21:13:44 +0000 (21:13 +0000)
includes/db/DatabaseIbm_db2.php
includes/db/DatabaseMysql.php
includes/db/DatabaseOracle.php
includes/db/DatabasePostgres.php
includes/db/DatabaseSqlite.php

index 2f1b1c1..ba556a4 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 /**
- * This script is the IBM DB2 database abstraction layer
- *
+ * This is the IBM DB2 database abstraction layer.
  * See maintenance/ibm_db2/README for development notes and other specific information
- * @ingroup Database
+ *
  * @file
+ * @ingroup Database
  * @author leo.petr+mediawiki@gmail.com
  */
 
index b326434..c49470b 100644 (file)
@@ -1,4 +1,11 @@
 <?php
+/**
+ * This is the MySQL database abstraction layer.
+ *
+ * @file
+ * @ingroup Database
+ */
+
 /**
  * Database abstraction object for mySQL
  * Inherit all methods and properties of Database::Database()
index b3809b0..8bfcf2b 100644 (file)
@@ -1,11 +1,12 @@
 <?php
 /**
- * @ingroup Database
+ * This is the Oracle database abstraction layer.
+ *
  * @file
+ * @ingroup Database
  */
 
 /**
- * This is the Oracle database abstraction layer.
  * @ingroup Database
  */
 class ORABlob {
index 5ea87e9..53a439f 100644 (file)
@@ -1,10 +1,11 @@
 <?php
 /**
- * @ingroup Database
- * @file
  * This is the Postgres database abstraction layer.
  *
+ * @file
+ * @ingroup Database
  */
+
 class PostgresField {
        private $name, $tablename, $type, $nullable, $max_length, $deferred, $deferrable, $conname;
 
index ef99dc4..74aea6f 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 /**
- * This script is the SQLite database abstraction layer
- *
+ * This is the SQLite database abstraction layer.
  * See maintenance/sqlite/README for development notes and other specific information
- * @ingroup Database
+ *
  * @file
+ * @ingroup Database
  */
 
 /**