Browse Source

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

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v29.0.0beta1
Joas Schilling 6 months ago
parent
commit
736fb4c162
No account linked to committer's email address
1 changed files with 6 additions and 4 deletions
  1. 6
    4
      build/integration/features/bootstrap/WebDav.php

+ 6
- 4
build/integration/features/bootstrap/WebDav.php View File

@@ -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/>

Loading…
Cancel
Save