|
1
|
<?php |
|
2
|
|
|
3
|
namespace SureCart\Background; |
|
4
|
|
|
5
|
/** |
|
6
|
* Controls sync services.
|
|
7
|
*/ |
|
8
|
class SyncService { |
|
9
|
/** |
|
10
|
* The customer sync service.
|
|
11
|
*
|
|
12
|
* @return CustomerSyncService |
|
13
|
*/ |
|
14
|
public function customers() { |
|
15
|
return new CustomerSyncService(); |
|
16
|
} |
|
17
|
} |
|
18
|
|