Code Duplication    Length = 7-8 lines in 2 locations

codeception/acceptance/EA10PluginCest.php 2 locations

@@ 939-946 (lines=8) @@
936
937
class Emperor_Store extends Store_Plugin
938
{
939
    public function __construct(AcceptanceTester $I, Store_Plugin $dependency = null)
940
    {
941
        parent::__construct($I, 'Emperor', $dependency);
942
        $this->publishPlugin('Horizon-1.0.0.tgz');
943
        $this->tables[] = 'dtb_foo';
944
        $this->columns[] = 'dtb_cart.foo_id';
945
        $this->traits['\Plugin\Emperor\Entity\CartTrait'] = 'src/Eccube/Entity/Cart';
946
    }
947
948
    public static function start(AcceptanceTester $I, Store_Plugin $dependency = null)
949
    {
@@ 1021-1027 (lines=7) @@
1018
1019
class Boomerang_Local extends Local_Plugin
1020
{
1021
    public function __construct(AcceptanceTester $I)
1022
    {
1023
        parent::__construct($I, 'Boomerang');
1024
        $this->tables[] = 'dtb_bar';
1025
        $this->columns[] = 'dtb_cart.is_boomerang';
1026
        $this->traits['\Plugin\Boomerang\Entity\CartTrait'] = 'src/Eccube/Entity/Cart';
1027
    }
1028
1029
    public static function start(AcceptanceTester $I)
1030
    {