Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge release 3.8.0 into 4.0.x #176

Open
wants to merge 28 commits into
base: 4.0.x
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
121f5a0
Lock file maintenance
renovate[bot] Aug 5, 2024
ac1f308
Lock file maintenance
renovate[bot] Aug 26, 2024
b8526fd
PhpUnit Deprecations fix for PHPUnit8.4 support
Atul-glo35265 Oct 17, 2024
8ce8a5e
PhpUnit Deprecations fix for PHPUnit8.4 support
Atul-glo35265 Oct 17, 2024
8aaaee9
Merge pull request #172 from Atul-glo35265/php8.4_deprecation_fix
Xerkus Oct 18, 2024
d53c8f8
Lock file maintenance
renovate[bot] Oct 18, 2024
7a38c11
Fix docs formatting
Xerkus Oct 18, 2024
d569d62
Merge pull request #170 from laminas/renovate/lock-file-maintenance
Xerkus Oct 18, 2024
bfc2565
Lock file maintenance
renovate[bot] Oct 28, 2024
20d922a
Update to latest PHP 8.1 syntax
samsonasik Nov 3, 2024
61a9a8d
Lock file maintenance
renovate[bot] Nov 4, 2024
3d69a69
Lock file maintenance
renovate[bot] Nov 11, 2024
c4913a1
Add php 8.4 support
fezfez Nov 14, 2024
f3912e5
Remove Prophecy from unit tests
fezfez Nov 14, 2024
db3b635
Migrate to phpunit 10
fezfez Nov 14, 2024
49bb932
Migrate to phpunit 10
fezfez Nov 14, 2024
449fc49
Fix syntax deprecation in php 8.4
fezfez Nov 14, 2024
82d27e0
Fix syntax deprecation in php 8.4
fezfez Nov 14, 2024
183057f
Clean PHPunit config
fezfez Nov 14, 2024
0d268e4
Clean PHPunit config
fezfez Nov 14, 2024
a399c07
Check if the var is array or iterable before foreach
fezfez Nov 14, 2024
8a1860c
Clean PHPunit config
fezfez Nov 14, 2024
516b2cd
Clean PHPunit config
fezfez Nov 14, 2024
08dbead
Update lowest version for some package to ensure they work on php 8.4
fezfez Nov 14, 2024
331bb5c
Remove redundant check
fezfez Nov 14, 2024
7899bb5
Merge pull request #174 from fezfez/php8.4
gsteel Nov 14, 2024
a9410d4
Merge pull request #173 from samsonasik/update-to-latest-php81-syntax
gsteel Nov 14, 2024
53ba28b
Lock file maintenance
renovate[bot] Nov 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove redundant check
Signed-off-by: fezfez <demonchaux.stephane@gmail.com>
  • Loading branch information
fezfez committed Nov 14, 2024
commit 331bb5c72bd8498b4b5c4d34511a667a451e2ee1
2 changes: 1 addition & 1 deletion src/ResponseSender/AbstractResponseSender.php
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ public function sendHeaders(SendResponseEvent $event)

$headers = $response->getHeaders();

if (is_array($headers) || is_iterable($headers)) {
if (is_iterable($headers)) {
foreach ($response->getHeaders() as $header) {
if ($header instanceof MultipleHeaderInterface) {
header($header->toString(), false);