adjust method comment for Ia19f1011
[lhc/web/wiklou.git] / maintenance / sqlite.inc
index c920104..1f82191 100644 (file)
@@ -1,5 +1,26 @@
 <?php
+/**
+ * Helper class for sqlite-specific scripts
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
+ * @ingroup Maintenance
+ */
+
 /**
  * This class contains code common to different SQLite-related maintenance scripts
  */
@@ -17,7 +38,7 @@ class Sqlite {
        }
 
        /**
-        * Checks given files for correctness of SQL syntax. MySQL DDL will be converted to 
+        * Checks given files for correctness of SQL syntax. MySQL DDL will be converted to
         * SQLite-compatible during processing.
         * Will throw exceptions on SQL errors
         * @return mixed true if no error or error string in case of errors
@@ -29,7 +50,7 @@ class Sqlite {
                if ( !is_array( $files ) ) {
                        $files = array( $files );
                }
-               
+
                $allowedTypes = array_flip( array(
                        'integer',
                        'real',