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 |
||
| 15 | class HttpPluginClientBuilder |
||
| 16 | { |
||
| 17 | /** @var HttpClient */ |
||
| 18 | private $httpClient; |
||
| 19 | /** @var HttpMethodsClient|null */ |
||
| 20 | private $pluginClient; |
||
| 21 | /** @var MessageFactory */ |
||
| 22 | private $messageFactory; |
||
| 23 | /** @var Plugin[] */ |
||
| 24 | private $plugins = []; |
||
| 25 | |||
| 26 | public function __construct(HttpClient $httpClient = null, MessageFactory $messageFactory = null) |
||
| 31 | |||
| 32 | public function addPlugin(Plugin $plugin) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param string $pluginClass |
||
| 45 | */ |
||
| 46 | public function removePlugin($pluginClass) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return HttpMethodsClient |
||
| 58 | */ |
||
| 59 | public function getHttpClient() |
||
| 70 | |||
| 71 | public function getMessageFactory() |
||
| 75 | } |
||
| 76 |