Skip to content

Commit 46a653b

Browse files
authored
Merge pull request #15 from district09/develop
Fix PHP8.4 compatibility in PartialCleanDirs
2 parents e5a202c + ce8e804 commit 46a653b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PartialCleanDirs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class PartialCleanDirs extends BaseTask
8686
* @param null|\Symfony\Component\Filesystem\Filesystem $fs
8787
* Filesystem component to manipulate files.
8888
*/
89-
public function __construct(array $dirs, Finder $finder = null, Filesystem $fs = null)
89+
public function __construct(array $dirs, ?Finder $finder = null, ?Filesystem $fs = null)
9090
{
9191
$this->dirs($dirs);
9292
$this->finder = is_null($finder)

0 commit comments

Comments
 (0)