Skip to content

Commit 7ab0ff4

Browse files
Added missing typehint
1 parent 508fd44 commit 7ab0ff4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Loader/Loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ private function processEntries(RepositoryInterface $repository, array $entries)
8787
private static function resolveNestedVariables(RepositoryInterface $repository, Value $value = null)
8888
{
8989
return Option::fromValue($value)
90-
->map(function ($v) use ($repository) {
90+
->map(function (Value $v) use ($repository) {
9191
return array_reduce($v->getVars(), function ($s, $i) use ($repository) {
9292
return substr($s, 0, $i).self::resolveNestedVariable($repository, substr($s, $i));
9393
}, $v->getChars());

0 commit comments

Comments
 (0)