Merge "Avoid master queries in Title::getLinksFrom()"
[lhc/web/wiklou.git] / includes / media / GIF.php
index b998d18..8ec7298 100644 (file)
@@ -65,11 +65,11 @@ class GIFHandler extends BitmapHandler {
                $meta = $image->getMetadata();
 
                if ( !$meta ) {
-                       return array();
+                       return [];
                }
                $meta = unserialize( $meta );
                if ( !isset( $meta['metadata'] ) ) {
-                       return array();
+                       return [];
                }
                unset( $meta['metadata']['_MW_GIF_VERSION'] );
 
@@ -170,7 +170,7 @@ class GIFHandler extends BitmapHandler {
                }
 
                /* Preserve original image info string, but strip the last char ')' so we can add even more */
-               $info = array();
+               $info = [];
                $info[] = $original;
 
                if ( $metadata['looped'] ) {