From 2a7d42b31b44051d0e87f127cec5ea8f88a0bb2c Mon Sep 17 00:00:00 2001 From: Xavier Noguer Gallego Date: Thu, 3 Jul 2003 17:09:05 +0000 Subject: [PATCH] fixing phpdoc comments git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@134125 c90b9560-bf6c-de11-be94-00142212c4b1 --- Writer/Worksheet.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Writer/Worksheet.php b/Writer/Worksheet.php index ee8d4e7..2a98c4e 100644 --- a/Writer/Worksheet.php +++ b/Writer/Worksheet.php @@ -1050,8 +1050,11 @@ class Spreadsheet_Excel_Writer_Worksheet extends Spreadsheet_Excel_Writer_BIFFwr * Write an array of values as a row * * @access public - * @param - * @return + * @param integer $row The row we are writing to + * @param integer $col The first col (leftmost col) we are writing to + * @param array $val The array of values to write + * @param mixed $format The optional format to apply to the cell + * @return mixed PEAR_Error on failure */ function writeRow($row, $col, $val, $format=0) @@ -1075,8 +1078,11 @@ class Spreadsheet_Excel_Writer_Worksheet extends Spreadsheet_Excel_Writer_BIFFwr * Write an array of values as a column * * @access public - * @param - * @return + * @param integer $row The first row (uppermost row) we are writing to + * @param integer $col The col we are writing to + * @param array $val The array of values to write + * @param mixed $format The optional format to apply to the cell + * @return mixed PEAR_Error on failure */ function writeCol($row, $col, $val, $format=0)