| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 1 | public function __construct(ConfiguratorInterface $configurator, DriverInterface $driver) |
|
| 23 | { |
||
| 24 | 1 | [$params, $username, $password] = $configurator->getParams(); |
|
| 25 | 1 | $this->driver = $driver; |
|
| 26 | 1 | $this->conn = $this->driver->connect($params, $username, $password); |
|
| 27 | 1 | $this->isConnected = true; |
|
| 28 | 1 | } |
|
| 30 |