From 8c3505e33c09ffb5be404e8397e70c64dee1f4fc Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Wed, 25 Jan 2012 13:31:27 +0100 Subject: [PATCH] [Profiler] Tweak PHPDoc --- .../Component/HttpKernel/Profiler/MongoDbProfilerStorage.php | 2 +- .../Component/HttpKernel/Profiler/ProfilerStorageInterface.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Profiler/MongoDbProfilerStorage.php b/src/Symfony/Component/HttpKernel/Profiler/MongoDbProfilerStorage.php index 5b582d99be..ba03aa32ab 100644 --- a/src/Symfony/Component/HttpKernel/Profiler/MongoDbProfilerStorage.php +++ b/src/Symfony/Component/HttpKernel/Profiler/MongoDbProfilerStorage.php @@ -82,7 +82,7 @@ class MongoDbProfilerStorage implements ProfilerStorageInterface } /** - * Write data associated with the given token. + * Saves a Profile. * * @param Profile $profile A Profile instance * diff --git a/src/Symfony/Component/HttpKernel/Profiler/ProfilerStorageInterface.php b/src/Symfony/Component/HttpKernel/Profiler/ProfilerStorageInterface.php index 3acf65c875..db608eaa18 100644 --- a/src/Symfony/Component/HttpKernel/Profiler/ProfilerStorageInterface.php +++ b/src/Symfony/Component/HttpKernel/Profiler/ProfilerStorageInterface.php @@ -42,7 +42,7 @@ interface ProfilerStorageInterface function read($token); /** - * Write data associated with the given token. + * Saves a Profile. * * @param Profile $profile A Profile instance *