| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function initialize(array $parameters): DriverContract |
||
| 37 | { |
||
| 38 | foreach ($this->getDefaultParameters() as $key => $value) { |
||
| 39 | $value = array_get($parameters, $key, $value); |
||
| 40 | |||
| 41 | array_set($parameters, $key, $value); |
||
| 42 | } |
||
| 43 | |||
| 44 | $this->parameters = collect($parameters); |
||
| 45 | |||
| 46 | return $this; |
||
| 47 | } |
||
| 48 | |||
| 59 |