From 3983fcf5c767838ee8ebeb274cec7e24aed33bd8 Mon Sep 17 00:00:00 2001 From: nnussbaum Date: Fri, 11 Mar 2016 14:44:19 +0100 Subject: [PATCH] [HttpKernel] Fixed a typo in the collect() method of Profiler --- src/Symfony/Component/HttpKernel/Profiler/Profiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/Profiler/Profiler.php b/src/Symfony/Component/HttpKernel/Profiler/Profiler.php index fc539bbb12871..3d6c3a2c0c515 100644 --- a/src/Symfony/Component/HttpKernel/Profiler/Profiler.php +++ b/src/Symfony/Component/HttpKernel/Profiler/Profiler.php @@ -200,7 +200,7 @@ public function collect(Request $request, Response $response, \Exception $except foreach ($this->collectors as $collector) { $collector->collect($request, $response, $exception); - // forces collectors to become "read/only" (they loose their object dependencies) + // forces collectors to become "read/only" (they lose their object dependencies) $profile->addCollector(unserialize(serialize($collector))); }