Skip to content

Commit beb11dc

Browse files
Fix str_replace_first error (#5)
1 parent 7f34eec commit beb11dc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/FaviconExtractor.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace StefanBauer\LaravelFaviconExtractor;
66

7+
use Illuminate\Support\Str;
78
use Illuminate\Support\Facades\Storage;
89
use StefanBauer\LaravelFaviconExtractor\Exception\FaviconCouldNotBeSavedException;
910
use StefanBauer\LaravelFaviconExtractor\Exception\InvalidUrlException;
@@ -64,7 +65,7 @@ public function fetchAndSaveTo(string $path, string $filename = null): string
6465
));
6566
}
6667

67-
return str_replace_first('public/', '', $targetPath);
68+
return Str::replaceFirst('public/', '', $targetPath);
6869
}
6970

7071
private function getTargetPath(string $path, string $filename): string

0 commit comments

Comments
 (0)