Completed
Pull Request — master (#14)
by
unknown
08:40
created
src/Bundle/LegacyFormHelper.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,7 @@
 block discarded – undo
7 7
     public static function getType($class, $alias)
8 8
     {
9 9
         return self::isLegacy() ?
10
-            $alias :
11
-            $class;
10
+            $alias : $class;
12 11
     }
13 12
 
14 13
     public static function isLegacy()
Please login to merge, or discard this patch.
src/Bundle/Command/CommandBusHandleCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
         $argumentsString = "";
88 88
 
89 89
         foreach (get_object_vars($command) as $propertyName => $propertyValue) {
90
-            $argumentsString .= $propertyName . " => '" . $propertyValue . "', ";
90
+            $argumentsString .= $propertyName." => '".$propertyValue."', ";
91 91
         }
92 92
 
93 93
         return substr($argumentsString, 0, -2);
Please login to merge, or discard this patch.