Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in data type #905

Merged
merged 3 commits into from
Feb 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/code/core/Mage/Sales/Model/Convert/Quote.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function addressToOrderAddress(Mage_Sales_Model_Quote_Address $address)
* Convert quote payment to order payment
*
* @param Mage_Sales_Model_Quote_Payment $payment
* @return Mage_Sales_Model_Quote_Payment
* @return Mage_Sales_Model_Order_Payment
*/
public function paymentToOrderPayment(Mage_Sales_Model_Quote_Payment $payment)
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Varien/Db/Adapter/Interface.php
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ public function select();
*
* @param mixed $table The table to insert data into.
* @param array $data Column-value pairs or array of column-value pairs.
* @param arrat $fields update fields pairs or values
* @param array $fields update fields pairs or values
* @return int The number of affected rows.
*/
public function insertOnDuplicate($table, array $data, array $fields = array());
Expand Down