Completed
Branch 1.5 (08af83)
by Romain
26:58 queued 02:03
created
Entity/AbstractCustomEntity.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function getId()
43 43
     {
44
-       return $this->id;
44
+        return $this->id;
45 45
     }
46 46
 
47 47
     /**
Please login to merge, or discard this patch.
Entity/AbstractCustomOptionTranslation.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,6 @@
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * Get the label
37
-
38 37
      * @return AbstractCustomOptionTranslation
39 38
      */
40 39
     public function getLabel()
Please login to merge, or discard this patch.
Doctrine/ORM/Sorter/LabelOptionSorter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         // join to value
27 27
         $condition = $this->prepareAttributeJoinCondition($attribute, $joinAlias);
28 28
         $this->qb->leftJoin(
29
-            $this->qb->getRootAlias().'.' . $attribute->getBackendStorage(),
29
+            $this->qb->getRootAlias().'.'.$attribute->getBackendStorage(),
30 30
             $joinAlias,
31 31
             'WITH',
32 32
             $condition
Please login to merge, or discard this patch.
Doctrine/ORM/Sorter/CodeOptionSorter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         // join to value
27 27
         $condition = $this->prepareAttributeJoinCondition($attribute, $joinAlias);
28 28
         $this->qb->leftJoin(
29
-            $this->qb->getRootAlias().'.' . $attribute->getBackendStorage(),
29
+            $this->qb->getRootAlias().'.'.$attribute->getBackendStorage(),
30 30
             $joinAlias,
31 31
             'WITH',
32 32
             $condition
Please login to merge, or discard this patch.
Doctrine/ORM/Sorter/TranslatableOptionSorter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         // join to value
27 27
         $condition = $this->prepareAttributeJoinCondition($attribute, $joinAlias);
28 28
         $this->qb->leftJoin(
29
-            $this->qb->getRootAlias().'.' . $attribute->getBackendStorage(),
29
+            $this->qb->getRootAlias().'.'.$attribute->getBackendStorage(),
30 30
             $joinAlias,
31 31
             'WITH',
32 32
             $condition
Please login to merge, or discard this patch.
DependencyInjection/Compiler/ConfigurationBuilderPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                 continue;
44 44
             }
45 45
 
46
-            $serviceConfiguration =  $this->getMergedConfiguration($configuration, $configurations);
46
+            $serviceConfiguration = $this->getMergedConfiguration($configuration, $configurations);
47 47
             $this->addService($container, $name, $serviceConfiguration);
48 48
         }
49 49
     }
Please login to merge, or discard this patch.
DependencyInjection/Compiler/SerializerPass.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $tagArguments[0] = $this->findAndSortTaggedServices(
57 57
             $container,
58 58
             array_map(
59
-                function ($tag) {
59
+                function($tag) {
60 60
                     return sprintf("%s.normalizer", $tag);
61 61
                 },
62 62
                 $tags
@@ -67,12 +67,12 @@  discard block
 block discarded – undo
67 67
         $tagArguments[1] = $this->findAndSortTaggedServices(
68 68
             $container,
69 69
             array_map(
70
-                function ($tag) {
70
+                function($tag) {
71 71
                     return sprintf("%s.encoder", $tag);
72 72
                 },
73 73
                 $tags
74 74
             )
75
-        );;
75
+        ); ;
76 76
 
77 77
         $definition = $container->getDefinition($serviceId);
78 78
         $arguments = $definition->getArguments();
Please login to merge, or discard this patch.
Extension/Formatter/Property/UrlProperty.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,6 +52,6 @@
 block discarded – undo
52 52
             $this->getOr(self::IS_ABSOLUTE_KEY, false)
53 53
         );
54 54
 
55
-        return $route . $this->getOr(self::ANCHOR_KEY);
55
+        return $route.$this->getOr(self::ANCHOR_KEY);
56 56
     }
57 57
 }
Please login to merge, or discard this patch.