We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f34eec commit beb11dcCopy full SHA for beb11dc
src/FaviconExtractor.php
@@ -4,6 +4,7 @@
4
5
namespace StefanBauer\LaravelFaviconExtractor;
6
7
+use Illuminate\Support\Str;
8
use Illuminate\Support\Facades\Storage;
9
use StefanBauer\LaravelFaviconExtractor\Exception\FaviconCouldNotBeSavedException;
10
use StefanBauer\LaravelFaviconExtractor\Exception\InvalidUrlException;
@@ -64,7 +65,7 @@ public function fetchAndSaveTo(string $path, string $filename = null): string
64
65
));
66
}
67
- return str_replace_first('public/', '', $targetPath);
68
+ return Str::replaceFirst('public/', '', $targetPath);
69
70
71
private function getTargetPath(string $path, string $filename): string
0 commit comments