Completed
Branch master (11f43c)
by
unknown
01:28
created
src/GherkinParam.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
       } elseif (is_array($arg)) {
161 161
         foreach ($arg as $k => $v) {
162 162
           if (is_string($v)) {
163
-             $args[$index][$k] = $this->getValueFromParam($v);
163
+              $args[$index][$k] = $this->getValueFromParam($v);
164 164
           }
165 165
         }
166 166
       }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
    */
53 53
   final protected function getValueFromParam(string $param)
54 54
   {
55
-    if (preg_match_all(self::$regEx['match'], $param, $variables)){
55
+    if (preg_match_all(self::$regEx['match'], $param, $variables)) {
56 56
       $values = [];
57 57
       foreach ($variables[0] as $variable)
58 58
       {
Please login to merge, or discard this patch.