Skip to content

Commit 5b43d50

Browse files
committed
Fix typo
1 parent eb6a95a commit 5b43d50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Type/Php/FilterFunctionReturnTypeHelper.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -397,13 +397,13 @@ private function getOptions(Type $flagsType, int $filterValue): array
397397

398398
$optionNames = array_merge(['default'], $this->getFilterTypeOptions()[$filterValue] ?? []);
399399
foreach ($optionNames as $optionName) {
400-
$optionaNameType = new ConstantStringType($optionName);
401-
if (!$optionsType->hasOffsetValueType($optionaNameType)->yes()) {
400+
$optionalNameType = new ConstantStringType($optionName);
401+
if (!$optionsType->hasOffsetValueType($optionalNameType)->yes()) {
402402
$options[$optionName] = null;
403403
continue;
404404
}
405405

406-
$options[$optionName] = $optionsType->getOffsetValueType($optionaNameType);
406+
$options[$optionName] = $optionsType->getOffsetValueType($optionalNameType);
407407
}
408408

409409
return $options;

0 commit comments

Comments
 (0)