@@ -255,6 +255,11 @@ discard block |
||
255 | 255 | return $this->davPath . '/files/' . $user; |
256 | 256 | } |
257 | 257 | |
258 | + /** |
|
259 | + * @param string $user |
|
260 | + * @param string $method |
|
261 | + * @param string $path |
|
262 | + */ |
|
258 | 263 | public function makeDavRequest($user, $method, $path, $headers, $body = null) { |
259 | 264 | $fullUrl = $this->baseUrl . $this->getDavFilesPath($user) . "$path"; |
260 | 265 | |
@@ -281,7 +286,6 @@ discard block |
||
281 | 286 | |
282 | 287 | /** |
283 | 288 | * @Given Using web as guest |
284 | - * @param string $user |
|
285 | 289 | */ |
286 | 290 | public function usingWebasGuest() { |
287 | 291 | return $this->loggingInUsingWebAs(null); |
@@ -77,6 +77,9 @@ |
||
77 | 77 | $this->assertStatusCode($response, 200); |
78 | 78 | } |
79 | 79 | |
80 | + /** |
|
81 | + * @param string $user |
|
82 | + */ |
|
80 | 83 | private function userExists($user) { |
81 | 84 | $client = new Client(); |
82 | 85 | $options = [ |