Skip to content

Commit

Permalink
Update src/Type/Php/FilterInputDynamicReturnTypeExtension.php
Browse files Browse the repository at this point in the history
  • Loading branch information
herndlm committed Feb 25, 2023
1 parent c92c08f commit 159f405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Type/Php/FilterInputDynamicReturnTypeExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct(private FilterFunctionReturnTypeHelper $filterFuncti

public function isFunctionSupported(FunctionReflection $functionReflection): bool
{
return strtolower($functionReflection->getName()) === 'filter_input';
return $functionReflection->getName() === 'filter_input';
}

public function getTypeFromFunctionCall(FunctionReflection $functionReflection, FuncCall $functionCall, Scope $scope): ?Type
Expand Down

0 comments on commit 159f405

Please sign in to comment.