Idiomatic fixes from previous PRs (#20)

* Various idiomatic feedback from PHP team

* Additional fixes after debugging tests
This commit is contained in:
Justin Boswell
2021-03-25 15:13:23 -04:00
committed by GitHub
parent 9c9422c21f
commit 531330e1b2
4 changed files with 14 additions and 13 deletions
+1 -1
View File
@@ -42,6 +42,6 @@ final class Headers {
}
public function toArray() {
return array_merge($this->headers);
return $this->headers;
}
}