Passed
Pull Request — master (#18)
by
unknown
09:22
created
src/Mailcode/Factory/CommandSets/Set/Show.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@
 block discarded – undo
62 62
     }
63 63
 
64 64
     public function price(string $variableName, bool $absolute = false, bool $withCurrencyName = false,
65
-                          string $currencyString = null, string $currencyVariable = null,
66
-                          string $regionString = null, string $regionVariable = null): Mailcode_Commands_Command_ShowPrice
65
+                            string $currencyString = null, string $currencyVariable = null,
66
+                            string $regionString = null, string $regionVariable = null): Mailcode_Commands_Command_ShowPrice
67 67
     {
68 68
         return (new Price())->create($variableName, $absolute, $withCurrencyName, $currencyString, $currencyVariable, $regionString, $regionVariable);
69 69
     }
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets/Set/Show/Price.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
 class Price extends Mailcode_Factory_CommandSets_Set
28 28
 {
29 29
     public function create(string $variableName, bool $absolute = false, bool $withCurrencyName = true,
30
-                           string $currencyString = null, string $currencyVariable = null,
31
-                           string $regionString = null, string $regionVariable = null): Mailcode_Commands_Command_ShowPrice
30
+                            string $currencyString = null, string $currencyVariable = null,
31
+                            string $regionString = null, string $regionVariable = null): Mailcode_Commands_Command_ShowPrice
32 32
     {
33 33
         $variableName = $this->instantiator->filterVariableName($variableName);
34 34
 
Please login to merge, or discard this patch.