Skip to content

Commit

Permalink
Merge branch '4.4' into 5.2
Browse files Browse the repository at this point in the history
* 4.4:
  [4.4] Add missing `@return` annotations
  Handle lock with long key
  • Loading branch information
nicolas-grekas committed Jul 23, 2021
2 parents abc5571 + 42414d7 commit 17f50e0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Iterator/ExcludeDirectoryFilterIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ public function hasChildren()
return $this->isRecursive && $this->iterator->hasChildren();
}

/**
* @return self
*/
public function getChildren()
{
$children = new self($this->iterator->getChildren(), []);
Expand Down

0 comments on commit 17f50e0

Please sign in to comment.