| 1 | <?php |
||
| 15 | class FolderSyncer |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var \SyncFS\Client\ClientInterface |
||
| 19 | */ |
||
| 20 | private $client; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param ClientInterface $client |
||
| 24 | */ |
||
| 25 | 3 | public function __construct(ClientInterface $client) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param MapBag $folders |
||
| 32 | * @param Callable $callback |
||
| 33 | */ |
||
| 34 | 3 | public function sync(MapBag $folders, $callback = null) |
|
| 41 | } |
||
| 42 |