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 7794bd1 commit c652b1fCopy full SHA for c652b1f
1 file changed
lib/private/Files/Storage/DAV.php
@@ -91,8 +91,7 @@ class DAV extends Common {
91
protected $password;
92
/** @var string */
93
protected $user;
94
- /** @var int|null */
95
- protected $authType;
+ protected ?int $authType = null;
96
97
protected $host;
98
/** @var bool */
@@ -104,8 +103,8 @@ class DAV extends Common {
104
103
protected $certPath;
105
106
protected $ready;
107
- /** @var string The resolved bearer token for AUTH_BEARER (access token or exchanged token) */
108
- protected $bearerToken;
+ /** The resolved bearer token for AUTH_BEARER (access token or exchanged token) */
+ protected string $bearerToken = '';
109
/** @var Client */
110
protected $client;
111
/** @var ArrayCache */
0 commit comments