Code Duplication    Length = 12-14 lines in 3 locations

code/Proxy/DatabaseProxy.php 3 locations

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