Skip to content

Commit c011af8

Browse files
authored
Merge pull request #18 from mrtawil/master
Fix storage getSize error
2 parents 5ab2d73 + 8ace69f commit c011af8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GetId3.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static function fromDiskAndPath($disk, $path)
3232
{
3333
return new static(
3434
$path,
35-
Storage::disk($disk)->getSize($path),
35+
Storage::disk($disk)->size($path),
3636
Storage::disk($disk)->readStream($path)
3737
);
3838
}

0 commit comments

Comments
 (0)