| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 13 | public function __construct(PDO $resource) |
|
| 31 | { |
||
| 32 | 13 | $this->checkEnvironment(); |
|
| 33 | 13 | if ($resource->getAttribute(\PDO::ATTR_DRIVER_NAME) != 'mysql') { |
|
| 34 | 1 | $msg = __CLASS__ . " requires pdo connection to be 'mysql'"; |
|
| 35 | 1 | throw new Exception\InvalidArgumentException($msg); |
|
| 36 | } |
||
| 37 | 13 | $this->resource = $resource; |
|
| 38 | 13 | $this->connection = new PdoMysqlConnection($this, $resource); |
|
| 39 | 13 | } |
|
| 40 | |||
| 51 |