|
1 |
| -<?php |
2 |
| - |
3 |
| -namespace Codexshaper\WooCommerce; |
4 |
| - |
5 |
| -use Automattic\WooCommerce\Client; |
6 |
| -use Codexshaper\WooCommerce\Traits\WooCommerceTrait; |
7 |
| - |
8 |
| -class WooCommerceAnalyticsApi |
9 |
| -{ |
10 |
| - use WooCommerceTrait; |
11 |
| - |
12 |
| - /** |
13 |
| - *@var \Automattic\WooCommerce\Client |
14 |
| - */ |
15 |
| - protected $client; |
16 |
| - |
17 |
| - /** |
18 |
| - *@var array |
19 |
| - */ |
20 |
| - protected $headers = []; |
21 |
| - |
22 |
| - /** |
23 |
| - * Build Woocommerce connection. |
24 |
| - * |
25 |
| - * @return void |
26 |
| - */ |
27 |
| - public function __construct() |
28 |
| - { |
29 |
| - try { |
30 |
| - $this->headers = [ |
31 |
| - 'header_total' => config('woocommerce.header_total') ?? 'X-WP-Total', |
32 |
| - 'header_total_pages' => config('woocommerce.header_total_pages') ?? 'X-WP-TotalPages', |
33 |
| - ]; |
34 |
| - |
35 |
| - $this->client = new Client( |
36 |
| - config('woocommerce.store_url'), |
37 |
| - config('woocommerce.consumer_key'), |
38 |
| - config('woocommerce.consumer_secret'), |
39 |
| - [ |
40 |
| - 'version' => 'wc-analytics', |
41 |
| - 'wp_api' => config('woocommerce.wp_api_integration'), |
42 |
| - 'verify_ssl' => config('woocommerce.verify_ssl'), |
43 |
| - 'query_string_auth' => config('woocommerce.query_string_auth'), |
44 |
| - 'timeout' => config('woocommerce.timeout'), |
45 |
| - ] |
46 |
| - ); |
47 |
| - } catch (\Exception $e) { |
48 |
| - throw new \Exception($e->getMessage(), 1); |
49 |
| - } |
50 |
| - } |
51 |
| -} |
| 1 | +<?php |
| 2 | + |
| 3 | +namespace Codexshaper\WooCommerce; |
| 4 | + |
| 5 | +use Automattic\WooCommerce\Client; |
| 6 | +use Codexshaper\WooCommerce\Traits\WooCommerceTrait; |
| 7 | + |
| 8 | +class WooCommerceAnalyticsApi |
| 9 | +{ |
| 10 | + use WooCommerceTrait; |
| 11 | + |
| 12 | + /** |
| 13 | + *@var \Automattic\WooCommerce\Client |
| 14 | + */ |
| 15 | + protected $client; |
| 16 | + |
| 17 | + /** |
| 18 | + *@var array |
| 19 | + */ |
| 20 | + protected $headers = []; |
| 21 | + |
| 22 | + /** |
| 23 | + * Build Woocommerce connection. |
| 24 | + * |
| 25 | + * @return void |
| 26 | + */ |
| 27 | + public function __construct() |
| 28 | + { |
| 29 | + try { |
| 30 | + $this->headers = [ |
| 31 | + 'header_total' => config('woocommerce.header_total') ?? 'X-WP-Total', |
| 32 | + 'header_total_pages' => config('woocommerce.header_total_pages') ?? 'X-WP-TotalPages', |
| 33 | + ]; |
| 34 | + |
| 35 | + $this->client = new Client( |
| 36 | + config('woocommerce.store_url'), |
| 37 | + config('woocommerce.consumer_key'), |
| 38 | + config('woocommerce.consumer_secret'), |
| 39 | + [ |
| 40 | + 'version' => 'wc-analytics', |
| 41 | + 'wp_api' => config('woocommerce.wp_api_integration'), |
| 42 | + 'verify_ssl' => config('woocommerce.verify_ssl'), |
| 43 | + 'query_string_auth' => config('woocommerce.query_string_auth'), |
| 44 | + 'timeout' => config('woocommerce.timeout'), |
| 45 | + ] |
| 46 | + ); |
| 47 | + } catch (\Exception $e) { |
| 48 | + throw new \Exception($e->getMessage(), 1); |
| 49 | + } |
| 50 | + } |
| 51 | +} |
0 commit comments