| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class Postgres12 extends Postgres11 |
||
| 17 | { |
||
| 18 | public $major_version = 12; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Checks to see whether or not a table has a unique id column. |
||
| 22 | * |
||
| 23 | * @deprecated this field has been removed of pg_class as of PG 12 |
||
| 24 | * @see https://www.postgresql.org/docs/12/catalog-pg-class.html |
||
| 25 | * |
||
| 26 | * @param string $table The table name |
||
| 27 | * |
||
| 28 | * @return false |
||
| 29 | */ |
||
| 30 | public function hasObjectID($table) |
||
| 35 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.