| 1 | <?php |
||
| 12 | class Driver extends \Doctrine\DBAL\Driver\Mysqli\Driver implements DriverInterface |
||
| 13 | { |
||
| 14 | use ServerGoneAwayExceptionsAwareTrait; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | private $extendedDriverOptions = [ |
||
| 20 | 'x_reconnect_attempts', |
||
| 21 | ]; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | * |
||
| 26 | * @throws DBALException |
||
| 27 | */ |
||
| 28 | public function connect(array $params, $username = null, $password = null, array $driverOptions = []) |
||
| 34 | } |
||
| 35 |