Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b50a434

Browse filesBrowse files
author
Jérémy Derussé
committed
Fix CS
1 parent 1862427 commit b50a434
Copy full SHA for b50a434

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
  • src/Symfony/Component/HttpKernel/HttpCache
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎src/Symfony/Component/HttpKernel/HttpCache/Ssi.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/HttpCache/Ssi.php
+2-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.