Skip to content

Commit

Permalink
Add a more precise return type for ParameterBag::keys in stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
stof authored and ondrejmirtes committed Sep 28, 2023
1 parent 3bc0b95 commit b055cab
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion stubs/Symfony/Component/HttpFoundation/ParameterBag.stub
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,10 @@ namespace Symfony\Component\HttpFoundation;
*/
class ParameterBag implements \IteratorAggregate
{

/**
* @return list<string>
*/
public function keys(): array
{
}
}

0 comments on commit b055cab

Please sign in to comment.