Completed
Push — master ( 96258a...c39ec3 )
by smiley
01:44
created
src/Psr7/MultipartStream.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
 	private function hasHeader(array $headers, string $key):bool{
158 158
 		$lowercaseHeader = strtolower($key);
159 159
 
160
-		foreach ($headers as $k => $v) {
161
-			if (strtolower($k) === $lowercaseHeader) {
160
+		foreach($headers as $k => $v){
161
+			if(strtolower($k) === $lowercaseHeader){
162 162
 				return true;
163 163
 			}
164 164
 		}
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 	/**
177 177
 	 * @inheritdoc
178 178
 	 */
179
-	public function getSize():?int{
179
+	public function getSize(): ?int{
180 180
 		return $this->stream->getSize() + strlen($this->boundary) + 6;
181 181
 	}
182 182
 
Please login to merge, or discard this patch.