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 dbb6965 commit 7dabc98Copy full SHA for 7dabc98
src/DropboxFilesystem.php
@@ -22,14 +22,11 @@ class DropboxFilesystem extends Filesystem
22
* @var string
23
*/
24
public $token;
25
- /**
26
- * @var string
27
- */
28
- public $app;
+
29
/**
30
* @var string|null
31
32
- public $prefix;
+ public $prefix = '';
33
34
35
* @inheritdoc
@@ -40,10 +37,6 @@ public function init()
40
37
throw new InvalidConfigException('The "token" property must be set.');
41
38
}
42
39
43
- if ($this->app === null) {
44
- throw new InvalidConfigException('The "app" property must be set.');
45
- }
46
-
47
parent::init();
48
49
0 commit comments