| Conditions | 3 |
| Paths | 4 |
| Total Lines | 53 |
| Code Lines | 44 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 14 | public function registerBundles() |
||
| 15 | { |
||
| 16 | $bundles = [ |
||
| 17 | new Symfony\Bundle\FrameworkBundle\FrameworkBundle(), |
||
| 18 | new Symfony\Bundle\SecurityBundle\SecurityBundle(), |
||
| 19 | new Symfony\Bundle\TwigBundle\TwigBundle(), |
||
| 20 | new Symfony\Bundle\MonologBundle\MonologBundle(), |
||
| 21 | new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(), |
||
| 22 | new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), |
||
| 23 | new Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle(), |
||
| 24 | new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(), |
||
| 25 | new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(), |
||
| 26 | new Dunglas\ActionBundle\DunglasActionBundle(), |
||
| 27 | new ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle(), |
||
| 28 | new Nelmio\CorsBundle\NelmioCorsBundle(), |
||
| 29 | new Knp\DoctrineBehaviors\Bundle\DoctrineBehaviorsBundle(), |
||
| 30 | new Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle(), |
||
| 31 | // new Dunglas\DoctrineJsonOdm\Bundle\DunglasDoctrineJsonOdmBundle(), |
||
| 32 | new Craue\FormFlowBundle\CraueFormFlowBundle(), |
||
| 33 | new Snc\RedisBundle\SncRedisBundle(), |
||
| 34 | new Ds\Component\Api\Bridge\Symfony\Bundle\DsApiBundle(), |
||
| 35 | new Ds\Component\Cache\Bridge\Symfony\Bundle\DsCacheBundle(), |
||
| 36 | new Ds\Component\Config\Bridge\Symfony\Bundle\DsConfigBundle(), |
||
| 37 | new Ds\Component\Discovery\Bridge\Symfony\Bundle\DsDiscoveryBundle(), |
||
| 38 | new Ds\Component\Entity\Bridge\Symfony\Bundle\DsEntityBundle(), |
||
| 39 | new Ds\Component\Form\Bridge\Symfony\Bundle\DsFormBundle(), |
||
| 40 | new Ds\Component\Func\Bridge\Symfony\Bundle\DsFuncBundle(), |
||
| 41 | new Ds\Component\Health\Bridge\Symfony\Bundle\DsHealthBundle(), |
||
| 42 | new Ds\Component\Locale\Bridge\Symfony\Bundle\DsLocaleBundle(), |
||
| 43 | new Ds\Component\Log\Bridge\Symfony\Bundle\DsLogBundle(), |
||
| 44 | new Ds\Component\Resolver\Bridge\Symfony\Bundle\DsResolverBundle(), |
||
| 45 | new Ds\Component\Security\Bridge\Symfony\Bundle\DsSecurityBundle(), |
||
| 46 | new Ds\Component\Session\Bridge\Symfony\Bundle\DsSessionBundle(), |
||
| 47 | new Ds\Component\Statistic\Bridge\Symfony\Bundle\DsStatisticBundle(), |
||
| 48 | new Ds\Component\Translation\Bridge\Symfony\Bundle\DsTranslationBundle(), |
||
| 49 | new AppBundle\AppBundle(), |
||
| 50 | ]; |
||
| 51 | |||
| 52 | if (in_array($this->getEnvironment(), ['prod'], true)) { |
||
| 53 | $bundles[] = new Ds\Component\Exception\Bridge\Symfony\Bundle\DsExceptionBundle(); |
||
| 54 | } |
||
| 55 | |||
| 56 | if (in_array($this->getEnvironment(), ['dev', 'test'], true)) { |
||
| 57 | $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle(); |
||
| 58 | $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); |
||
| 59 | $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(); |
||
| 60 | $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(); |
||
| 61 | $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(); |
||
| 62 | $bundles[] = new Ds\Component\Debug\Bridge\Symfony\Bundle\DsDebugBundle(); |
||
| 63 | $bundles[] = new Ds\Component\Identity\Bridge\Symfony\TestBundle\DsIdentityTestBundle(); |
||
| 64 | } |
||
| 65 | |||
| 66 | return $bundles; |
||
| 67 | } |
||
| 101 |