| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 29 | public function __construct(ConfigProviderInterface $configProvider, array $registeredEntityTypes = []) |
||
| 30 | { |
||
| 31 | $this->dataObjectFactory = new DataObjectFactory($registeredEntityTypes); |
||
| 32 | $this->client = new Client($configProvider); |
||
| 33 | $this->requestBuilder = new RequestBuilder($this->client); |
||
| 34 | $this->operationPool = new OperationPool($this->requestBuilder, $this->dataObjectFactory); |
||
| 35 | } |
||
| 57 |