summaryrefslogtreecommitdiff
path: root/includes/media/BMP.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/media/BMP.php')
-rw-r--r--includes/media/BMP.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/includes/media/BMP.php b/includes/media/BMP.php
index 2f451b0a..ce1b0362 100644
--- a/includes/media/BMP.php
+++ b/includes/media/BMP.php
@@ -1,10 +1,14 @@
<?php
+/**
+ * @file
+ * @ingroup Media
+ */
/**
* Handler for Microsoft's bitmap format; getimagesize() doesn't
* support these files
*
- * @addtogroup Media
+ * @ingroup Media
*/
class BmpHandler extends BitmapHandler {
@@ -26,4 +30,4 @@ class BmpHandler extends BitmapHandler {
$h = unpack( 'V' , $h );
return array( $w[1], $h[1] );
}
-} \ No newline at end of file
+}