Skip to content

Commit

Permalink
Merge branch '4.4' into 5.3
Browse files Browse the repository at this point in the history
* 4.4:
  Fix return types for PHP 8.1
  • Loading branch information
derrabus committed Aug 4, 2021
2 parents 51b71af + 9a4fcec commit 77c4d55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Helper/HelperSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,9 @@ public function getCommand()
}

/**
* @return Helper[]
* @return \Traversable<Helper>
*/
#[\ReturnTypeWillChange]
public function getIterator()
{
return new \ArrayIterator($this->helpers);
Expand Down

0 comments on commit 77c4d55

Please sign in to comment.