From 8fc2f8cbcd5bb076e46af7d90ed044ec66807856 Mon Sep 17 00:00:00 2001 From: William DURAND Date: Mon, 9 Dec 2013 09:50:14 +0100 Subject: [PATCH] typo in phpdoc --- src/Negotiation/FormatNegotiator.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Negotiation/FormatNegotiator.php b/src/Negotiation/FormatNegotiator.php index 5e74e51..e296fd3 100644 --- a/src/Negotiation/FormatNegotiator.php +++ b/src/Negotiation/FormatNegotiator.php @@ -72,7 +72,7 @@ public function getBest($header, array $priorities = array()) } /** - * Returns the best format (as a string) based on a given `Accept` header, + * Return the best format (as a string) based on a given `Accept` header, * and a set of priorities. Priorities are "formats" such as `json`, `xml`, * etc. or "mime types" such as `application/json`, `application/xml`, etc. * @@ -116,7 +116,7 @@ public function registerFormat($format, array $mimeTypes, $override = false) } /** - * Returns the format for a given mime type, or null + * Return the format for a given mime type, or null * if not found. * * @param string $mimeType @@ -135,7 +135,7 @@ public function getFormat($mimeType) } /** - * Returns an array of mime types for the given set of formats. + * Return an array of mime types for the given set of formats. * * @param array $formats A set of formats. *