2
0
Просмотр исходного кода

[ZF-5718] reflect new behaviour regarding passed array values

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19445 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp 16 лет назад
Родитель
Сommit
03cbcda1c3
1 измененных файлов с 5 добавлено и 5 удалено
  1. 5 5
      library/Zend/Db/Select.php

+ 5 - 5
library/Zend/Db/Select.php

@@ -466,7 +466,7 @@ class Zend_Db_Select
      * </code>
      * </code>
      *
      *
      * @param string   $cond  The WHERE condition.
      * @param string   $cond  The WHERE condition.
-     * @param string   $value OPTIONAL A single value to quote into the condition.
+     * @param mixed    $value OPTIONAL The value to quote into the condition.
      * @param constant $type  OPTIONAL The type of the given value
      * @param constant $type  OPTIONAL The type of the given value
      * @return Zend_Db_Select This Zend_Db_Select object.
      * @return Zend_Db_Select This Zend_Db_Select object.
      */
      */
@@ -483,7 +483,7 @@ class Zend_Db_Select
      * Otherwise identical to where().
      * Otherwise identical to where().
      *
      *
      * @param string   $cond  The WHERE condition.
      * @param string   $cond  The WHERE condition.
-     * @param string   $value OPTIONAL A single value to quote into the condition.
+     * @param mixed    $value OPTIONAL The value to quote into the condition.
      * @param constant $type  OPTIONAL The type of the given value
      * @param constant $type  OPTIONAL The type of the given value
      * @return Zend_Db_Select This Zend_Db_Select object.
      * @return Zend_Db_Select This Zend_Db_Select object.
      *
      *
@@ -526,7 +526,7 @@ class Zend_Db_Select
      * appears. See {@link where()} for an example
      * appears. See {@link where()} for an example
      *
      *
      * @param string $cond The HAVING condition.
      * @param string $cond The HAVING condition.
-     * @param string|Zend_Db_Expr $val A single value to quote into the condition.
+     * @param string|Zend_Db_Expr $val The value to quote into the condition.
      * @return Zend_Db_Select This Zend_Db_Select object.
      * @return Zend_Db_Select This Zend_Db_Select object.
      */
      */
     public function having($cond)
     public function having($cond)
@@ -551,7 +551,7 @@ class Zend_Db_Select
      * Otherwise identical to orHaving().
      * Otherwise identical to orHaving().
      *
      *
      * @param string $cond The HAVING condition.
      * @param string $cond The HAVING condition.
-     * @param string $val A single value to quote into the condition.
+     * @param mixed  $val  The value to quote into the condition.
      * @return Zend_Db_Select This Zend_Db_Select object.
      * @return Zend_Db_Select This Zend_Db_Select object.
      *
      *
      * @see having()
      * @see having()
@@ -984,7 +984,7 @@ class Zend_Db_Select
      * Internal function for creating the where clause
      * Internal function for creating the where clause
      *
      *
      * @param string   $condition
      * @param string   $condition
-     * @param string   $value  optional
+     * @param mixed    $value  optional
      * @param string   $type   optional
      * @param string   $type   optional
      * @param boolean  $bool  true = AND, false = OR
      * @param boolean  $bool  true = AND, false = OR
      * @return string  clause
      * @return string  clause