Exceptions
1 year ago
Connection.php
1 year ago
ConvertParameters.php
1 year ago
Driver.php
1 year ago
Result.php
2 months ago
Statement.php
1 year ago
index.php
1 year ago
Driver.php
15 lines
| 1 | <?php declare(strict_types = 1); |
| 2 | |
| 3 | namespace MailPoet\Doctrine\WPDB; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoetVendor\Doctrine\DBAL\Driver\AbstractMySQLDriver; |
| 9 | |
| 10 | class Driver extends AbstractMySQLDriver { |
| 11 | public function connect(array $params): Connection { |
| 12 | return new Connection(); |
| 13 | } |
| 14 | } |
| 15 |