diff options
author | Christopher Ng <chrng8@gmail.com> | 2022-03-02 19:19:00 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2022-03-02 19:19:00 +0000 |
commit | 21f1d43a01d7e3793d3a8afbfff2547f93416fad (patch) | |
tree | c7c92463892a0af921dc5ddb4e07e5c5be252171 | |
parent | ec50de527135b1dd1f41cd27b801102f9fe7670f (diff) | |
download | nextcloud-server-21f1d43a01d7e3793d3a8afbfff2547f93416fad.tar.gz nextcloud-server-21f1d43a01d7e3793d3a8afbfff2547f93416fad.zip |
PHP 7.3 compatibility
Signed-off-by: Christopher Ng <chrng8@gmail.com>
-rw-r--r-- | apps/dav/lib/Connector/Sabre/File.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php index 3a13dba5df6..bf7e469a0c0 100644 --- a/apps/dav/lib/Connector/Sabre/File.php +++ b/apps/dav/lib/Connector/Sabre/File.php @@ -78,7 +78,8 @@ use Sabre\DAV\IFile; class File extends Node implements IFile { protected $request; - protected IL10N $l10n; + /** @var IL10N */ + protected $l10n; /** * Sets up the node, expects a full path name |