diff options
author | Joas Schilling <coding@schilljs.com> | 2023-10-27 07:45:25 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-01-26 13:53:30 +0100 |
commit | 736fb4c162e26075252392f76c2b51c825a3bfd1 (patch) | |
tree | 26bd8d826819a57a84eba141f4d55685f76dc339 /build | |
parent | 1ecdefd0e671a41e3adfd68de73385976ea8a75b (diff) | |
download | nextcloud-server-736fb4c162e26075252392f76c2b51c825a3bfd1.tar.gz nextcloud-server-736fb4c162e26075252392f76c2b51c825a3bfd1.zip |
Fix "Creation of dynamic property FeatureContext::$parts is deprecated in WebDav.php line 757"
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/integration/features/bootstrap/WebDav.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/build/integration/features/bootstrap/WebDav.php b/build/integration/features/bootstrap/WebDav.php index b919976e790..a832e26ec18 100644 --- a/build/integration/features/bootstrap/WebDav.php +++ b/build/integration/features/bootstrap/WebDav.php @@ -54,6 +54,8 @@ trait WebDav { private array $parsedResponse = []; private string $s3MultipartDestination; private string $uploadId; + /** @var string[] */ + private array $parts = []; /** * @Given /^using dav path "([^"]*)"$/ @@ -475,28 +477,28 @@ trait WebDav { </d:prop> <d:literal>image/png</d:literal> </d:eq> - + <d:eq> <d:prop> <d:getcontenttype/> </d:prop> <d:literal>image/jpeg</d:literal> </d:eq> - + <d:eq> <d:prop> <d:getcontenttype/> </d:prop> <d:literal>image/heic</d:literal> </d:eq> - + <d:eq> <d:prop> <d:getcontenttype/> </d:prop> <d:literal>video/mp4</d:literal> </d:eq> - + <d:eq> <d:prop> <d:getcontenttype/> |