Skip to content

Commit a8eed2a

Browse files
committed
Fix function name
1 parent 62f9145 commit a8eed2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CachedBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ protected function recursiveImplodeWithKey(array $items, string $glue = "_") : s
143143

144144
foreach ($items as $key => $value) {
145145
if (is_array($value)) {
146-
$result .= $key . $glue . $this->recursiveImplode($value, $glue);
146+
$result .= $key . $glue . $this->recursiveImplodeWithKey($value, $glue);
147147

148148
continue;
149149
}

0 commit comments

Comments
 (0)