Skip to content

Commit

Permalink
Remove types of existing parameters as there is no gaurantee it will …
Browse files Browse the repository at this point in the history
…not break BC.
  • Loading branch information
zobo authored May 24, 2022
1 parent b2faa07 commit 0a42fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Iterator/GlobIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class GlobIterator extends IteratorIterator
* to internal RecursiveIteratorIterator and prevent throwing
* Exception on errors like access denied.
*/
public function __construct(string $glob, int $flags = 0, bool $skipErrors = false)
public function __construct($glob, $flags = 0, bool $skipErrors = false)
{
$basePath = Glob::getBasePath($glob, $flags);

Expand Down

0 comments on commit 0a42fed

Please sign in to comment.