summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Holywell <[email protected]>2018-01-02 10:10:53 +1000
committerGitHub <[email protected]>2018-01-02 10:10:53 +1000
commitecaf4858591adc90f4b0fafcbd6f94fcefb88b51 (patch)
tree18a025507e2c0000b99e94fb15ed7f9e1b0a1825
parent869514b527f826f68e078eb8a8160d7e7cac6e4a (diff)
parentb45171cdde9a2f3ea35328112bd98e8545da3ff9 (diff)
Merge pull request #325 from kawausokun/master
Fix IDE warnings based on PHPDoc comments
-rw-r--r--idiorm.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/idiorm.php b/idiorm.php
index a382e9e..2ca9a93 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -63,8 +63,8 @@
* @method $this tableAlias($alias)
* @method int countNullIdColumns()
* @method $this selectExpr($expr, $alias=null)
- * @method \ORM selectMany()
- * @method \ORM selectManyExpr()
+ * @method \ORM selectMany($values)
+ * @method \ORM selectManyExpr($values)
* @method $this rawJoin($table, $constraint, $table_alias, $parameters = array())
* @method $this innerJoin($table, $constraint, $table_alias=null)
* @method $this leftOuterJoin($table, $constraint, $table_alias=null)
@@ -253,7 +253,7 @@
* required to use Idiorm). If you have more than one setting
* you wish to configure, another shortcut is to pass an array
* of settings (and omit the second argument).
- * @param string $key
+ * @param string|array $key
* @param mixed $value
* @param string $connection_name Which connection to use
*/