@@ -51,27 +51,27 @@ discard block |
||
51 | 51 | case HttpMethods::Put: |
52 | 52 | |
53 | 53 | $len = $params[0]; |
54 | - $etag = $params[1]; |
|
54 | + $etag = $params[1]; |
|
55 | 55 | |
56 | - $headers = [ |
|
57 | - Headers::ContentLength => intval($len), |
|
58 | - Headers::ContentType => ContentTypes::Calendar, |
|
59 | - ]; |
|
56 | + $headers = [ |
|
57 | + Headers::ContentLength => intval($len), |
|
58 | + Headers::ContentType => ContentTypes::Calendar, |
|
59 | + ]; |
|
60 | 60 | |
61 | - if(!empty($etag)){ |
|
62 | - $headers[Headers::IfMatch] = $etag; |
|
63 | - } |
|
61 | + if(!empty($etag)){ |
|
62 | + $headers[Headers::IfMatch] = $etag; |
|
63 | + } |
|
64 | 64 | |
65 | - return $headers; |
|
65 | + return $headers; |
|
66 | 66 | } |
67 | 67 | return []; |
68 | 68 | } |
69 | 69 | /** |
70 | - * @param string $url |
|
71 | - * @param string $body |
|
72 | - * @param int $depth |
|
73 | - * @return Request |
|
74 | - */ |
|
70 | + * @param string $url |
|
71 | + * @param string $body |
|
72 | + * @param int $depth |
|
73 | + * @return Request |
|
74 | + */ |
|
75 | 75 | public static function createPropFindRequest($url , $body, $depth = 1){ |
76 | 76 | return new Request |
77 | 77 | ( |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | * @param string $etag |
161 | 161 | * @return Request |
162 | 162 | */ |
163 | - public static function createPutRequest($url, $body, $etag = null){ |
|
163 | + public static function createPutRequest($url, $body, $etag = null){ |
|
164 | 164 | |
165 | 165 | return new Request |
166 | 166 | ( |