eZ\Publish\Core\Persistence\Doctrine\ConnectionHandler::getAutoIncrementValue PHP Метод

getAutoIncrementValue() публичный Метод

Returns the value used for autoincrement tables. Usually this will just be null. In case for sequence based RDBMS this method can return a proper value for the given column.
public getAutoIncrementValue ( string $table, string $column ) : mixed
$table string
$column string
Результат mixed
    public function getAutoIncrementValue($table, $column)
    {
        return 'null';
    }