| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function __construct(DatabaseManager $database) |
||
| 16 | { |
||
| 17 | $pdo = $database->connection()->getPdo(); |
||
| 18 | |||
| 19 | // temporary fix of atk4/data inability to handle PREPARE on 'is null' |
||
| 20 | $pdo->setAttribute(\PDO::ATTR_EMULATE_PREPARES, true); |
||
| 21 | |||
| 22 | parent::__construct(Connection::connect($pdo)); |
||
| 23 | } |
||
| 25 |