1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 14:16:39 +02:00

PostgreReflector: removed version check (#381)

This commit is contained in:
Jan Kuchař
2020-12-23 10:31:03 +01:00
committed by GitHub
parent ca74488636
commit 1a77048225

View File

@@ -28,9 +28,6 @@ class PostgreReflector implements Dibi\Reflector
public function __construct(Dibi\Driver $driver, string $version)
{
if ($version < 7.4) {
throw new Dibi\DriverException('Reflection requires PostgreSQL 7.4 and newer.');
}
$this->driver = $driver;
$this->version = $version;
}