Code Duplication    Length = 12-14 lines in 3 locations

code/DebugBarDatabaseNewProxy.php 3 locations

@@ 421-434 (lines=14) @@
418
        );
419
    }
420
421
    public function alterTable(
422
        $table,
423
        $newFields = null,
424
        $newIndexes = null,
425
        $alteredFields = null,
426
        $alteredIndexes = null,
427
        $alteredOptions = null,
428
        $advancedOptions = null
429
    ) {
430
        return call_user_func_array(
431
            array($this->realConn, __FUNCTION__),
432
            func_get_args()
433
        );
434
    }
435
436
    public function comparisonClause(
437
        $field,
@@ 436-448 (lines=13) @@
433
        );
434
    }
435
436
    public function comparisonClause(
437
        $field,
438
        $value,
439
        $exact = false,
440
        $negate = false,
441
        $caseSensitive = false,
442
        $parameterised = false
443
    ) {
444
        return call_user_func_array(
445
            array($this->realConn, __FUNCTION__),
446
            func_get_args()
447
        );
448
    }
449
450
    public function createDatabase()
451
    {
@@ 466-477 (lines=12) @@
463
        );
464
    }
465
466
    public function createTable(
467
        $table,
468
        $fields = null,
469
        $indexes = null,
470
        $options = null,
471
        $advancedOptions = null
472
    ) {
473
        return call_user_func_array(
474
            array($this->realConn, __FUNCTION__),
475
            func_get_args()
476
        );
477
    }
478
479
    public function datetimeDifferenceClause($date1, $date2)
480
    {