Skip to content

Commit c419fef

Browse files
Merge branch '2.8' into 3.4
* 2.8: Fix Clidumper tests Enable the fixer enforcing fully-qualified calls for compiler-optimized functions Apply fixers Disable the native_constant_invocation fixer until it can be scoped Update the list of excluded files for the CS fixer
1 parent c7da191 commit c419fef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

HttpHeaderSerializer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ public function serialize($links)
3939

4040
$attributesParts = array('', sprintf('rel="%s"', implode(' ', $link->getRels())));
4141
foreach ($link->getAttributes() as $key => $value) {
42-
if (is_array($value)) {
42+
if (\is_array($value)) {
4343
foreach ($value as $v) {
4444
$attributesParts[] = sprintf('%s="%s"', $key, $v);
4545
}
4646

4747
continue;
4848
}
4949

50-
if (!is_bool($value)) {
50+
if (!\is_bool($value)) {
5151
$attributesParts[] = sprintf('%s="%s"', $key, $value);
5252

5353
continue;

0 commit comments

Comments
 (0)