Merge "Properly detect if CACHE_ACCEL is available in the installer"
[lhc/web/wiklou.git] / includes / site / SiteImporter.php
index a05bad5..42812e1 100644 (file)
@@ -116,7 +116,7 @@ class SiteImporter {
         * @return Site[]
         */
        private function makeSiteList( DOMElement $root ) {
-               $sites = array();
+               $sites = [];
 
                // Old sites, to get the row IDs that correspond to the global site IDs.
                // TODO: Get rid of internal row IDs, they just get in the way. Get rid of ORMRow, too.
@@ -183,8 +183,8 @@ class SiteImporter {
                        $site->addLocalId( $idType, $id );
                }
 
-               //@todo: import <data>
-               //@todo: import <config>
+               // @todo: import <data>
+               // @todo: import <config>
 
                return $site;
        }