Passed
Pull Request — master (#347)
by Mirko
09:07
created
htdocs/src/AppBundle/Form/UploadFieldNotesType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
                 ]
55 55
             );
56 56
 
57
-        $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) {
57
+        $builder->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) {
58 58
             $data = $event->getData();
59 59
             $form = $event->getForm();
60 60
 
Please login to merge, or discard this patch.
htdocs/app/AppKernel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
             $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
25 25
             $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
26 26
             $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
27
-            $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();;
27
+            $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(); ;
28 28
         }
29 29
 
30 30
         return $bundles;
@@ -37,16 +37,16 @@  discard block
 block discarded – undo
37 37
 
38 38
     public function getCacheDir()
39 39
     {
40
-        return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
40
+        return dirname(__DIR__) . '/var/cache/' . $this->getEnvironment();
41 41
     }
42 42
 
43 43
     public function getLogDir()
44 44
     {
45
-        return dirname(__DIR__).'/var/logs';
45
+        return dirname(__DIR__) . '/var/logs';
46 46
     }
47 47
 
48 48
     public function registerContainerConfiguration(LoaderInterface $loader)
49 49
     {
50
-        $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
50
+        $loader->load($this->getRootDir() . '/config/config_' . $this->getEnvironment() . '.yml');
51 51
     }
52 52
 }
Please login to merge, or discard this patch.