mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Fix CS issue
This commit is contained in:
parent
34d848d0ca
commit
777a46ff6d
1 changed files with 1 additions and 1 deletions
|
@ -417,7 +417,7 @@ class CakeResponse {
|
|||
$this->_setContentLength();
|
||||
$this->_setContentType();
|
||||
foreach ($this->_headers as $header => $values) {
|
||||
foreach((array)$values as $value) {
|
||||
foreach ((array)$values as $value) {
|
||||
$this->_sendHeader($header, $value);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue