Code Duplication    Length = 14-14 lines in 2 locations

codeception/acceptance/EA10PluginCest.php 2 locations

@@ 594-607 (lines=14) @@
591
    }
592
}
593
594
class Horizon_Local extends Local_Plugin
595
{
596
    public function __construct(AcceptanceTester $I)
597
    {
598
        parent::__construct($I, 'Horizon');
599
        $this->table = 'dtb_dash';
600
        $this->column = 'dtb_cart.is_horizon';
601
    }
602
603
    public static function start(AcceptanceTester $I)
604
    {
605
        return new self($I);
606
    }
607
}
608
609
class Horizon_Store extends Store_Plugin
610
{
@@ 609-622 (lines=14) @@
606
    }
607
}
608
609
class Horizon_Store extends Store_Plugin
610
{
611
    public function __construct(AcceptanceTester $I)
612
    {
613
        parent::__construct($I, 'Horizon');
614
        $this->table = 'dtb_dash';
615
        $this->column = 'dtb_cart.is_horizon';
616
    }
617
618
    public static function start(AcceptanceTester $I)
619
    {
620
        return new self($I);
621
    }
622
}