Skip to content

Commit

Permalink
Fix PSALM
Browse files Browse the repository at this point in the history
  • Loading branch information
Warxcell committed Jul 11, 2021
1 parent 85f7773 commit 96a2f6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PathResolverManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ public function __construct(ManagerInterface $manager, PathResolver $pathResolve
$this->pathResolver = $pathResolver;
}

public function upload(SplFileInfo $file): File
public function upload(SplFileInfo $splFileInfo): File
{
return $this->manager->upload($file);
return $this->manager->upload($splFileInfo);
}

public function getPathname(File $file): string
Expand Down

0 comments on commit 96a2f6b

Please sign in to comment.