mirror of
https://github.com/dg/dibi.git
synced 2025-08-31 09:41:43 +02:00
- DibiConnection: insert() and update() accepts ArrayObject
This commit is contained in:
@@ -536,7 +536,7 @@ class dibi
|
||||
* @param array
|
||||
* @return DibiFluent
|
||||
*/
|
||||
public static function update($table, array $args)
|
||||
public static function update($table, $args)
|
||||
{
|
||||
return self::getConnection()->update($table, $args);
|
||||
}
|
||||
@@ -548,7 +548,7 @@ class dibi
|
||||
* @param array
|
||||
* @return DibiFluent
|
||||
*/
|
||||
public static function insert($table, array $args)
|
||||
public static function insert($table, $args)
|
||||
{
|
||||
return self::getConnection()->insert($table, $args);
|
||||
}
|
||||
|
Reference in New Issue
Block a user