Skip to content

Instantly share code, notes, and snippets.

@inxilpro
Created August 29, 2017 23:24
Show Gist options
  • Select an option

  • Save inxilpro/fd39827c99ff9003f74ea581b6c95a60 to your computer and use it in GitHub Desktop.

Select an option

Save inxilpro/fd39827c99ff9003f74ea581b6c95a60 to your computer and use it in GitHub Desktop.
<?php
class ConvertLineEndingsToCRLF
{
public function handle($request, Closure $next)
{
$response = $next($request);
return $response->setContent(
str_replace("\n", "\r\n", $response->getContent())
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment