Skip to content

Commit 4891833

Browse files
author
Jérémy Derussé
committed
Fix CS
1 parent 464ea3a commit 4891833

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

HttpCache/Ssi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function addSurrogateCapability(Request $request)
7171
$current = $request->headers->get('Surrogate-Capability');
7272
$new = 'symfony2="SSI/1.0"';
7373

74-
$request->headers->set('Surrogate-Capability', $current ? $current . ', ' . $new : $new);
74+
$request->headers->set('Surrogate-Capability', $current ? $current.', '.$new : $new);
7575
}
7676

7777
/**
@@ -188,7 +188,7 @@ private function handleIncludeTag($attributes)
188188
throw new \RuntimeException('Unable to process an SSI tag without a "virtual" attribute.');
189189
}
190190

191-
return sprintf('<?php echo $this->surrogate->handle($this, %s, \'\', false) ?>' . "\n",
191+
return sprintf('<?php echo $this->surrogate->handle($this, %s, \'\', false) ?>'."\n",
192192
var_export($options['virtual'], true)
193193
);
194194
}

0 commit comments

Comments
 (0)