From 2ba88b2c475cd55cb80d1f11423e5171ab4777be Mon Sep 17 00:00:00 2001 From: Vladimir Popov Date: Sat, 12 Mar 2016 15:56:46 +0100 Subject: [PATCH 1/5] Fix type in collect() method comment --- 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))); } From a4b05632c18fda9987a40f7d68835a6ddcbb758f Mon Sep 17 00:00:00 2001 From: Vladimir Popov Date: Sat, 12 Mar 2016 16:55:00 +0100 Subject: [PATCH 2/5] Revert --- 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 3d6c3a2c0c515..fc539bbb12871 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 lose their object dependencies) + // forces collectors to become "read/only" (they loose their object dependencies) $profile->addCollector(unserialize(serialize($collector))); } From c8a0525f13b7841046811d0d87668a41982b9de8 Mon Sep 17 00:00:00 2001 From: Vladimir Popov Date: Sat, 12 Mar 2016 16:55:34 +0100 Subject: [PATCH 3/5] Redo fix, to trigger build again --- 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))); } From ac4d7792a88d1f741226bd7ef6a783e9589b71bb Mon Sep 17 00:00:00 2001 From: Vladimir Popov Date: Sat, 12 Mar 2016 16:58:34 +0100 Subject: [PATCH 4/5] Read change --- 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 3d6c3a2c0c515..0effca32887b1 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 lose their object dependencies) + // forces collectors to become "readonly" (they lose their object dependencies) $profile->addCollector(unserialize(serialize($collector))); } From 7e772f3d4b3f28bd63635da8dc62a65be0e5c7c6 Mon Sep 17 00:00:00 2001 From: Vladimir Popov Date: Sat, 12 Mar 2016 16:59:44 +0100 Subject: [PATCH 5/5] Revert as build is triggered --- 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 0effca32887b1..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 "readonly" (they lose their object dependencies) + // forces collectors to become "read/only" (they lose their object dependencies) $profile->addCollector(unserialize(serialize($collector))); }