Doc Block changes

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@88405 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Mark Baker 2012-03-25 23:58:02 +00:00
parent a2560b45f7
commit 4347e0635a
1 changed files with 30 additions and 48 deletions

View File

@ -262,7 +262,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -312,7 +312,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -324,8 +324,6 @@ class PHPExcel_Calculation_Database {
* column.
* @return mixed
*
* @TODO Numeric value in $field to reference a column position rather than a name.
*
*/
public static function DGET($database,$field,$criteria) {
$field = self::__fieldExtract($database,$field);
@ -365,7 +363,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -377,8 +375,6 @@ class PHPExcel_Calculation_Database {
* column.
* @return float
*
* @TODO Numeric value in $field to reference a column position rather than a name.
*
*/
public static function DMAX($database,$field,$criteria) {
$field = self::__fieldExtract($database,$field);
@ -414,7 +410,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -426,8 +422,6 @@ class PHPExcel_Calculation_Database {
* column.
* @return float
*
* @TODO Numeric value in $field to reference a column position rather than a name.
*
*/
public static function DMIN($database,$field,$criteria) {
$field = self::__fieldExtract($database,$field);
@ -462,7 +456,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -474,8 +468,6 @@ class PHPExcel_Calculation_Database {
* column.
* @return float
*
* @TODO Numeric value in $field to reference a column position rather than a name.
*
*/
public static function DPRODUCT($database,$field,$criteria) {
$field = self::__fieldExtract($database,$field);
@ -511,7 +503,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -523,8 +515,6 @@ class PHPExcel_Calculation_Database {
* column.
* @return float
*
* @TODO Numeric value in $field to reference a column position rather than a name.
*
*/
public static function DSTDEV($database,$field,$criteria) {
$field = self::__fieldExtract($database,$field);
@ -560,7 +550,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -572,8 +562,6 @@ class PHPExcel_Calculation_Database {
* column.
* @return float
*
* @TODO Numeric value in $field to reference a column position rather than a name.
*
*/
public static function DSTDEVP($database,$field,$criteria) {
$field = self::__fieldExtract($database,$field);
@ -608,7 +596,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -620,8 +608,6 @@ class PHPExcel_Calculation_Database {
* column.
* @return float
*
* @TODO Numeric value in $field to reference a column position rather than a name.
*
*/
public static function DSUM($database,$field,$criteria) {
$field = self::__fieldExtract($database,$field);
@ -657,7 +643,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -669,8 +655,6 @@ class PHPExcel_Calculation_Database {
* column.
* @return float
*
* @TODO Numeric value in $field to reference a column position rather than a name.
*
*/
public static function DVAR($database,$field,$criteria) {
$field = self::__fieldExtract($database,$field);
@ -706,7 +690,7 @@ class PHPExcel_Calculation_Database {
* A database is a list of related data in which rows of related
* information are records, and columns of data are fields. The
* first row of the list contains labels for each column.
* @param mixed[] $field Indicates which column is used in the function. Enter the
* @param string|integer $field Indicates which column is used in the function. Enter the
* column label enclosed between double quotation marks, such as
* "Age" or "Yield," or a number (without quotation marks) that
* represents the position of the column within the list: 1 for
@ -718,8 +702,6 @@ class PHPExcel_Calculation_Database {
* column.
* @return float
*
* @TODO Numeric value in $field to reference a column position rather than a name.
*
*/
public static function DVARP($database,$field,$criteria) {
$field = self::__fieldExtract($database,$field);