Code Duplication    Length = 6-9 lines in 3 locations

TaskManager/src/Kreta/TaskManager/Infrastructure/Symfony/Framework/AppKernel.php 1 location

@@ 64-69 (lines=6) @@
61
            new WarezgibzzzQueryBusBundle(),
62
        ];
63
64
        if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
65
            $bundles[] = new DebugBundle();
66
            $bundles[] = new DoctrineFixturesBundle();
67
            $bundles[] = new SensioDistributionBundle();
68
            $bundles[] = new WebProfilerBundle();
69
        }
70
71
        return $bundles;
72
    }

Notifier/src/Kreta/Notifier/Infrastructure/Symfony/Framework/AppKernel.php 1 location

@@ 54-62 (lines=9) @@
51
            new WarezgibzzzQueryBusBundle(),
52
        ];
53
54
        if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
55
            $bundles[] = new DebugBundle();
56
57
            if ('dev' === $this->getEnvironment()) {
58
                $bundles[] = new TwigBundle();
59
                $bundles[] = new WebProfilerBundle();
60
                $bundles[] = new WebServerBundle();
61
            }
62
        }
63
64
        return $bundles;
65
    }

IdentityAccess/src/Kreta/IdentityAccess/Infrastructure/Symfony/Framework/AppKernel.php 1 location

@@ 89-94 (lines=6) @@
86
            new BenGorUserBundle(),
87
        ];
88
89
        if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
90
            $bundles[] = new DebugBundle();
91
            $bundles[] = new DoctrineFixturesBundle();
92
            $bundles[] = new SensioDistributionBundle();
93
            $bundles[] = new WebProfilerBundle();
94
        }
95
96
        return $bundles;
97
    }