# phastpress/1.82/classes/ServiceSDKImplementation.php

PhastPress, version 1.82. 21 lines.

- Page: https://pluginprobe.com/plugins/phastpress/1.82/code/classes/ServiceSDKImplementation.php
- Raw: https://pluginprobe.com/plugins/phastpress/1.82/raw/classes/ServiceSDKImplementation.php
- Modified: 2019-10-19T21:24:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/phastpress/1.82/code/classes/ServiceSDKImplementation.php#L10-L20`.

```php
<?php
namespace Kibo\PhastPlugins\PhastPress;

use Kibo\PhastPlugins\SDK\Common\ServiceHostTrait;
use Kibo\PhastPlugins\SDK\ServiceHost;

class ServiceSDKImplementation implements ServiceHost {

    public function getCacheRootCandidatesProvider() {
        return new CacheRootCandidatesProviderImplementation();
    }

    public function onServiceConfigurationLoad(array $config) {
        if (class_exists(\Requests::class)) {
            $config['httpClient'] = RequestsHTTPClient::class;
        }
        return $config;
    }

}

```
