Whitespace fixup under tha maint directory.
[lhc/web/wiklou.git] / maintenance / sqlite.inc
index c920104..238fe82 100644 (file)
@@ -1,5 +1,5 @@
 <?php
+
 /**
  * This class contains code common to different SQLite-related maintenance scripts
  */
@@ -17,7 +17,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 +29,7 @@ class Sqlite {
                if ( !is_array( $files ) ) {
                        $files = array( $files );
                }
-               
+
                $allowedTypes = array_flip( array(
                        'integer',
                        'real',