fixing phpdoc comments

git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@134125 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Xavier Noguer Gallego 2003-07-03 17:09:05 +00:00
parent 35034623b5
commit 2a7d42b31b
1 changed files with 10 additions and 4 deletions

View File

@ -1050,8 +1050,11 @@ class Spreadsheet_Excel_Writer_Worksheet extends Spreadsheet_Excel_Writer_BIFFwr
* Write an array of values as a row * Write an array of values as a row
* *
* @access public * @access public
* @param * @param integer $row The row we are writing to
* @return * @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) 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 * Write an array of values as a column
* *
* @access public * @access public
* @param * @param integer $row The first row (uppermost row) we are writing to
* @return * @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) function writeCol($row, $col, $val, $format=0)