Changeset 3003216
- Timestamp:
- 11/29/2023 10:49:51 AM (2 years ago)
- Location:
- woosms-sms-module-for-woocommerce/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (1 diff)
-
src/Event/Helpers.php (modified) (1 diff)
-
src/Event/Hook.php (modified) (1 diff)
-
woosms-sms-module-for-woocommerce.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woosms-sms-module-for-woocommerce/trunk/readme.txt
r2999526 r3003216 160 160 161 161 == Changelog == 162 = 3.0.4 = 163 * Order Payment Hook fix transaction_id type hint 162 164 163 165 = 3.0.3 = -
woosms-sms-module-for-woocommerce/trunk/src/Event/Helpers.php
r2999526 r3003216 58 58 { 59 59 wp_die('', 403); 60 61 return false; 60 62 } 61 63 -
woosms-sms-module-for-woocommerce/trunk/src/Event/Hook.php
r2995624 r3003216 60 60 61 61 62 add_action('woocommerce_payment_complete', Helpers::dispatch('order_payment', fn (Dispatcher $dispatcher, int $order_id, string$transaction_id) =>62 add_action('woocommerce_payment_complete', Helpers::dispatch('order_payment', fn (Dispatcher $dispatcher, int $order_id, /*string|int*/ $transaction_id) => 63 63 $dispatcher->dispatch('order', 'payment', new Variables([ 64 64 'order_id' => $order_id, 65 'order_payment_transaction_id' => $transaction_id65 'order_payment_transaction_id' => (string) $transaction_id 66 66 ])) 67 67 ), 100, 2); -
woosms-sms-module-for-woocommerce/trunk/woosms-sms-module-for-woocommerce.php
r2999526 r3003216 5 5 * Plugin URI: https://www.bulkgate.com/en/integrations/sms-plugin-for-woocommerce/ 6 6 * Description: Notify your customers about order status via SMS notifications. 7 * Version: 3.0. 37 * Version: 3.0.4 8 8 * Author: BulkGate 9 9 * Author URI: https://www.bulkgate.com/
Note: See TracChangeset
for help on using the changeset viewer.