We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0840514 commit f554cdbCopy full SHA for f554cdb
src/UploadManager.php
@@ -59,7 +59,7 @@ public static function getStrategy()
59
public function getUploadUrl($disk, $path)
60
{
61
$url = '';
62
- $methodName = 'get' . Str::camel($disk) . 'Url';
+ $methodName = 'get' . ucfirst(Str::camel($disk)) . 'Url';
63
if (method_exists($this->strategy, $methodName)) {
64
$url = $this->strategy->$methodName($path);
65
}
@@ -277,4 +277,4 @@ public function getFirstErrorMessage()
277
278
279
280
-}
+}
0 commit comments