Skip to content

Commit b4038f4

Browse files
#v0.3.6 - Fix parsing issue with merge fields
1 parent 5f93405 commit b4038f4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,6 @@
9595

9696
### 0.3.4 - Fix incorrect json_decoder and encoder
9797

98-
### 0.3.5 - Fix issue with parsing non scalar options
98+
### 0.3.5 - Fix issue with parsing non scalar options
99+
100+
### 0.3.6 - Fix issue with parsing

src/support/forge/api/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected function setOptions($options = [])
7777

7878
$defaults['description']['jsonPath'] = realpath($this->rootPath . $this->DEFAULT_API_JSON_PATH);
7979
$mergedOptions = array_replace_recursive($defaults, $options);
80-
$parsedOptions = $this->parseOptions($mergedOptions, $options);
80+
$parsedOptions = $this->parseOptions($mergedOptions, $mergedOptions);
8181

8282
$handlers = $this->getStacks($parsedOptions);
8383
if (!empty($handlers)) {

0 commit comments

Comments
 (0)