Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class Postgres12 extends Postgres11 |
||
17 | { |
||
18 | /** |
||
19 | * @var float |
||
20 | */ |
||
21 | public $major_version = 12; |
||
22 | |||
23 | /** |
||
24 | * @var class-string |
||
|
|||
25 | */ |
||
26 | public $help_classname = \PHPPgAdmin\Help\PostgresDoc12::class; |
||
27 | |||
28 | /** |
||
29 | * Checks to see whether or not a table has a unique id column. |
||
30 | * |
||
31 | * @deprecated this field has been removed of pg_class as of PG 12 |
||
32 | * @see https://www.postgresql.org/docs/12/catalog-pg-class.html |
||
33 | * |
||
34 | * @param string $table The table name |
||
35 | * |
||
36 | * @return bool |
||
37 | */ |
||
38 | public function hasObjectID($table) |
||
43 |