Remove useless method overrides

parent 6a45e830
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
namespace Doctrine\DBAL\Driver; namespace Doctrine\DBAL\Driver;
use Doctrine\DBAL\ParameterType;
use PDO; use PDO;
use function assert; use function assert;
...@@ -93,14 +92,6 @@ class PDOConnection extends PDO implements Connection, ServerInfoAwareConnection ...@@ -93,14 +92,6 @@ class PDOConnection extends PDO implements Connection, ServerInfoAwareConnection
} }
} }
/**
* {@inheritdoc}
*/
public function quote($input, $type = ParameterType::STRING)
{
return parent::quote($input, $type);
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
......
...@@ -26,11 +26,6 @@ class ConnectionTest extends DbalFunctionalTestCase ...@@ -26,11 +26,6 @@ class ConnectionTest extends DbalFunctionalTestCase
$this->markTestSkipped('MySQLi only test.'); $this->markTestSkipped('MySQLi only test.');
} }
protected function tearDown(): void
{
parent::tearDown();
}
public function testDriverOptions(): void public function testDriverOptions(): void
{ {
$driverOptions = [MYSQLI_OPT_CONNECT_TIMEOUT => 1]; $driverOptions = [MYSQLI_OPT_CONNECT_TIMEOUT => 1];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment