From 935bce2c2710acadad0196391f8f580b3adba762 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rk=20S=C3=A1gi-Kaz=C3=A1r?= Date: Thu, 3 Mar 2016 23:59:51 +0100 Subject: [PATCH] Fix typos --- Collector/MessageJournal.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Collector/MessageJournal.php b/Collector/MessageJournal.php index 9f87bece..dca7ccf3 100644 --- a/Collector/MessageJournal.php +++ b/Collector/MessageJournal.php @@ -62,7 +62,7 @@ public function addFailure(RequestInterface $request, Exception $exception) } /** - * Get the successful request-resonse pairs. + * Returns the successful request-resonse pairs. * * @return array */ @@ -72,7 +72,7 @@ public function getSucessfulRequests() } /** - * Get the failed request-resonse pairs. + * Returns the failed request-resonse pairs. * * @return array */ @@ -82,7 +82,7 @@ public function getFailedRequests() } /** - * Get the total number of request made. + * Returns the total number of request made. * * @return int */ @@ -96,7 +96,7 @@ public function getTotalRequests() */ public function collect(Request $request, Response $response, \Exception $exception = null) { - // We do not need to collect any data form the Symfony Request and Response + // We do not need to collect any data from the Symfony Request and Response } /**