PATH:
home
/
centosnipponia
/
public_html
/
apptt-oldgit
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Driver
/
Mysqli
<?php namespace Doctrine\DBAL\Driver\Mysqli; use Doctrine\DBAL\Driver\AbstractMySQLDriver; use Doctrine\DBAL\Exception; class Driver extends AbstractMySQLDriver { /** * {@inheritdoc} */ public function connect(array $params, $username = null, $password = null, array $driverOptions = []) { try { return new Connection($params, (string) $username, (string) $password, $driverOptions); } catch (MysqliException $e) { throw Exception::driverException($this, $e); } } /** * {@inheritdoc} */ public function getName() { return 'mysqli'; } }
[+]
..
[-] Connection.php
[edit]
[-] Driver.php
[edit]
[+]
Exception
[-] MysqliConnection.php
[edit]
[-] MysqliException.php
[edit]
[-] MysqliStatement.php
[edit]
[-] Statement.php
[edit]
[-] .htaccess.disabled
[edit]