Skip to content
This repository was archived by the owner on Oct 16, 2019. It is now read-only.

Commit 616393d

Browse files
authored
Phpdoc fixes (#3)
1 parent 90d8d4f commit 616393d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

library/Zend/Db/Adapter/Abstract.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -919,10 +919,10 @@ public function quote($value, $type = null)
919919
* // $safe = "WHERE date < '2005-01-02'"
920920
* </code>
921921
*
922-
* @param string $text The text with a placeholder.
923-
* @param mixed $value The value to quote.
924-
* @param string $type OPTIONAL SQL datatype
925-
* @param integer $count OPTIONAL count of placeholders to replace
922+
* @param string $text The text with a placeholder.
923+
* @param mixed $value The value to quote.
924+
* @param null|string $type OPTIONAL SQL datatype
925+
* @param integer $count OPTIONAL count of placeholders to replace
926926
* @return string An SQL-safe quoted value placed into the original text.
927927
*/
928928
public function quoteInto($text, $value, $type = null, $count = null)

library/Zend/Db/Table/Abstract.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1365,10 +1365,10 @@ public function find()
13651365
*
13661366
* Honors the Zend_Db_Adapter fetch mode.
13671367
*
1368-
* @param string|array|Zend_Db_Table_Select $where OPTIONAL An SQL WHERE clause or Zend_Db_Table_Select object.
1369-
* @param string|array $order OPTIONAL An SQL ORDER clause.
1370-
* @param int $count OPTIONAL An SQL LIMIT count.
1371-
* @param int $offset OPTIONAL An SQL LIMIT offset.
1368+
* @param null|string|array|Zend_Db_Table_Select $where OPTIONAL An SQL WHERE clause or Zend_Db_Table_Select object.
1369+
* @param null|string|array $order OPTIONAL An SQL ORDER clause.
1370+
* @param null|int $count OPTIONAL An SQL LIMIT count.
1371+
* @param null|int $offset OPTIONAL An SQL LIMIT offset.
13721372
* @return Zend_Db_Table_Rowset_Abstract The row results per the Zend_Db_Adapter fetch mode.
13731373
*/
13741374
public function fetchAll($where = null, $order = null, $count = null, $offset = null)

0 commit comments

Comments
 (0)