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 63612cb commit 85f7773
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DelegatingManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ public function getManagerFor(string $class): ManagerInterface
return $this->managers[$class];
}

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 85f7773

Please sign in to comment.