From 6f8b5da585e5ec032489e04a91e7c2a010687148 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Thu, 21 Jul 2005 23:07:58 +0000 Subject: [PATCH] * Documentation --- includes/Exif.php | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/includes/Exif.php b/includes/Exif.php index 5c89b68fff..5ee4eabd37 100644 --- a/includes/Exif.php +++ b/includes/Exif.php @@ -84,6 +84,8 @@ class Exif { /** * Constructor + * + * @param string $file */ function Exif( $file ) { /** @@ -305,8 +307,6 @@ class Exif { } } - /**#@-*/ - /** * Make $this->mFilteredExifData */ @@ -377,7 +377,9 @@ class Exif { /**#@+ * Validates if a tag value is of the type it should be according to the Exif spec - * + * + * @access private + * * @param mixed $in The input value to check * @return bool */ @@ -472,6 +474,8 @@ class Exif { /** * Validates if a tag has a legal value according to the Exif spec * + * @access private + * * @param string $tag The tag to check * @param mixed $val The value of the tag * @return bool @@ -516,6 +520,8 @@ class Exif { /** * Conviniance function for debugging output * + * @access private + * * @param mixed $in * @param string $fname * @param mixed $action @@ -945,6 +951,8 @@ class FormatExif { /** * Conviniance function for getFormattedData() * + * @access private + * * @param string $tag The tag name to pass on * @param string $val The value of the tag * @param string $arg An argument to pass ($1) @@ -957,6 +965,11 @@ class FormatExif { } /** + * Format a number, convert numbers from fractions into floating point + * numbers + * + * @access private + * * @param mixed $num The value to format * @return mixed A floating point number or whatever we were fed */ -- 2.20.1