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 4d2e80a commit c351384Copy full SHA for c351384
1 file changed
src/FS/Storage.php
@@ -6,6 +6,19 @@ class Storage
6
{
7
protected static $errorsArray = [];
8
9
+ /**
10
+ * Add storage bucket connections
11
+ *
12
+ * @param array $connections The connections to buckets
13
+ * @param string $default The default connection to use
14
15
+ * @return void
16
+ */
17
+ public static function connections(array $connections, string $default = 's3')
18
+ {
19
+ Bucket::connections($connections, $default);
20
+ }
21
+
22
/**
23
* Create a new file
24
*
0 commit comments