diff options
author | Anton Titov <[email protected]> | 2019-10-10 10:36:11 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2019-10-10 10:36:11 +0300 |
commit | 8a840c40828c1fb31c69fc846a85738ddef0a7c7 (patch) | |
tree | 39844e383c16163c8f3cfdc92c06354353069dfd /tests/http/memleak.php | |
parent | 98940ef86c39217b8bdf61e06b8883024334c45c (diff) | |
parent | 46783061ceddee1fe8dd4f9aa9e71a2e6a293e7f (diff) |
Merge pull request #191 from ScullWM/master_phpcsfix
Php cs fixer
Diffstat (limited to 'tests/http/memleak.php')
-rw-r--r-- | tests/http/memleak.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/http/memleak.php b/tests/http/memleak.php index 82f08f88..2df7ae63 100644 --- a/tests/http/memleak.php +++ b/tests/http/memleak.php @@ -7,6 +7,6 @@ $mem = ''; function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface { - $mem .= str_repeat(" ", 1024*1024); - return $resp; -}
\ No newline at end of file + $mem .= str_repeat(" ", 1024*1024); + return $resp; +} |