Fix "Creation of dynamic property FeatureContext::$parts is deprecated in WebDav.php line 757"

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/41139/head
Joas Schilling 2 years ago
parent 1ecdefd0e6
commit 736fb4c162
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
  1. 10
      build/integration/features/bootstrap/WebDav.php

@ -54,6 +54,8 @@ trait WebDav {
private array $parsedResponse = []; private array $parsedResponse = [];
private string $s3MultipartDestination; private string $s3MultipartDestination;
private string $uploadId; private string $uploadId;
/** @var string[] */
private array $parts = [];
/** /**
* @Given /^using dav path "([^"]*)"$/ * @Given /^using dav path "([^"]*)"$/
@ -475,28 +477,28 @@ trait WebDav {
</d:prop> </d:prop>
<d:literal>image/png</d:literal> <d:literal>image/png</d:literal>
</d:eq> </d:eq>
<d:eq> <d:eq>
<d:prop> <d:prop>
<d:getcontenttype/> <d:getcontenttype/>
</d:prop> </d:prop>
<d:literal>image/jpeg</d:literal> <d:literal>image/jpeg</d:literal>
</d:eq> </d:eq>
<d:eq> <d:eq>
<d:prop> <d:prop>
<d:getcontenttype/> <d:getcontenttype/>
</d:prop> </d:prop>
<d:literal>image/heic</d:literal> <d:literal>image/heic</d:literal>
</d:eq> </d:eq>
<d:eq> <d:eq>
<d:prop> <d:prop>
<d:getcontenttype/> <d:getcontenttype/>
</d:prop> </d:prop>
<d:literal>video/mp4</d:literal> <d:literal>video/mp4</d:literal>
</d:eq> </d:eq>
<d:eq> <d:eq>
<d:prop> <d:prop>
<d:getcontenttype/> <d:getcontenttype/>

Loading…
Cancel
Save