PluginProbe
Sendy / 3.4.7
Sendy v3.4.7
3.4.6 3.4.7 trunk 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 All 32 releases
sendy / lib / Resources / ShippingMethod.php

ShippingMethod.php in Sendy 3.4.7, at lib/Resources/ShippingMethod.php

16 lines 327 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Sendy\WooCommerce\Resources;
4
5 use Sendy\WooCommerce\ApiClientFactory;
6
7 final class ShippingMethod
8 {
9 public function sync(array $data): array
10 {
11 return ApiClientFactory::buildConnectionUsingTokens()->put('/webshop_shipping_methods', [
12 'shipping_methods' => $data,
13 ]);
14 }
15 }
16