diff --git a/README.md b/README.md index a4895632a0e1f..1be77142b6018 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,19 @@ To suggest documentation improvements, click [here][4]. [3]: [4]: +

Community Maintainers

+The members of this team have been recognized for their outstanding commitment to maintaining and improving Magento. Magento has granted them permission to accept, merge, and reject pull requests, as well as review issues, and thanks these Community Maintainers for their valuable contributions. + + + + + +

Top Contributors

+Magento team thanks for any contribution that can improve our code base, documentation or increase test coverage. We always recognize our most active members, your contributions are the foundation of the Magento open source platform. + + + +

Reporting security issues

To report security vulnerabilities in Magento software or web sites, please e-mail security@magento.com. Please do not report security issues using GitHub. Be sure to encrypt your e-mail with our encryption key if it includes sensitive information. Learn more about reporting security issues here. diff --git a/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php b/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php index 5cba5bd3e8058..c576a060730ea 100644 --- a/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php +++ b/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php @@ -492,6 +492,13 @@ public function insertForce($table, array $bind); /** * Updates table rows with specified data based on a WHERE clause. * + * The $where parameter in this instance can be a single WHERE clause or an array containing a multiple. In all + * instances, a WHERE clause can be a string or an instance of {@see Zend_Db_Expr}. In the event you use an array, + * you may specify the clause as the key and a value to be bound to it as the value. E.g., ['amt > ?' => $amt] + * + * If the $where parameter is an array of multiple clauses, they will be joined by AND, with each clause wrapped in + * parenthesis. If you wish to use an OR, you must give a single clause that is an instance of {@see Zend_Db_Expr} + * * @param mixed $table The table to update. * @param array $bind Column-value pairs. * @param mixed $where UPDATE WHERE clause(s). @@ -928,7 +935,6 @@ public function getDateExtractSql($date, $unit); */ public function getTableName($tableName); - /** * Build a trigger name based on table name and trigger details *