1 | <?php |
||
20 | class GuzzleClientBuilder implements ClientBuilderInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var array |
||
24 | */ |
||
25 | private $config = []; |
||
26 | |||
27 | /** |
||
28 | * @param array $config |
||
29 | */ |
||
30 | 8 | public function __construct(array $config = []) |
|
34 | |||
35 | /** |
||
36 | * This method MUST return a \FeedIo\Adapter\ClientInterface instance |
||
37 | * @return \FeedIo\Adapter\ClientInterface |
||
38 | */ |
||
39 | 3 | public function getClient() |
|
43 | |||
44 | /** |
||
45 | * This method MUST return the name of the main class |
||
46 | * @return string |
||
47 | */ |
||
48 | 1 | public function getMainClassName() |
|
52 | |||
53 | /** |
||
54 | * This method MUST return the name of the package name |
||
55 | * @return string |
||
56 | */ |
||
57 | 1 | public function getPackageName() |
|
61 | } |
||
62 |