Code Duplication    Length = 12-14 lines in 3 locations

code/Proxy/DatabaseProxy.php 3 locations

@@ 441-454 (lines=14) @@
438
        );
439
    }
440
441
    public function alterTable(
442
        $table,
443
        $newFields = null,
444
        $newIndexes = null,
445
        $alteredFields = null,
446
        $alteredIndexes = null,
447
        $alteredOptions = null,
448
        $advancedOptions = null
449
    ) {
450
        return call_user_func_array(
451
            array($this->realConn, __FUNCTION__),
452
            func_get_args()
453
        );
454
    }
455
456
    public function comparisonClause(
457
        $field,
@@ 456-468 (lines=13) @@
453
        );
454
    }
455
456
    public function comparisonClause(
457
        $field,
458
        $value,
459
        $exact = false,
460
        $negate = false,
461
        $caseSensitive = false,
462
        $parameterised = false
463
    ) {
464
        return call_user_func_array(
465
            array($this->realConn, __FUNCTION__),
466
            func_get_args()
467
        );
468
    }
469
470
    public function createDatabase()
471
    {
@@ 486-497 (lines=12) @@
483
        );
484
    }
485
486
    public function createTable(
487
        $table,
488
        $fields = null,
489
        $indexes = null,
490
        $options = null,
491
        $advancedOptions = null
492
    ) {
493
        return call_user_func_array(
494
            array($this->realConn, __FUNCTION__),
495
            func_get_args()
496
        );
497
    }
498
499
    public function datetimeDifferenceClause($date1, $date2)
500
    {