We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395
still has access to your repository or
update the API account.
1 | <?php |
||
14 | class HttpPluginClientBuilder |
||
15 | { |
||
16 | /** @var HttpClient */ |
||
17 | private $httpClient; |
||
18 | /** @var HttpMethodsClient|null */ |
||
19 | private $pluginClient; |
||
20 | /** @var MessageFactory */ |
||
21 | private $messageFactory; |
||
22 | /** @var Plugin[] */ |
||
23 | private $plugins = []; |
||
24 | |||
25 | public function __construct(HttpClient $httpClient = null, MessageFactory $messageFactory = null) |
||
30 | |||
31 | public function addPlugin(Plugin $plugin) |
||
36 | |||
37 | /** |
||
38 | * @param string $pluginClass |
||
39 | */ |
||
40 | public function removePlugin($pluginClass) |
||
49 | |||
50 | /** |
||
51 | * @return HttpMethodsClient |
||
52 | */ |
||
53 | public function getHttpClient() |
||
64 | |||
65 | public function getMessageFactory() |
||
69 | } |
||
70 |