| 1 | <?php |
||
| 18 | class Syncer |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var MapBag |
||
| 22 | */ |
||
| 23 | private $map; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var ClientInterface |
||
| 27 | */ |
||
| 28 | private $defaultClient; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param array $config |
||
| 32 | * @param Factory $clientFactory |
||
| 33 | */ |
||
| 34 | 2 | public function __construct(array $config, Factory $clientFactory = null) |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @param OutputInterface $output |
||
| 53 | */ |
||
| 54 | 2 | public function sync(OutputInterface $output) |
|
| 64 | } |
||
| 65 |