From 0d6a6b79f04eca9f19f6a1ce9e30d97101525955 Mon Sep 17 00:00:00 2001 From: Tim Nagel Date: Sun, 6 Feb 2011 14:27:05 -0800 Subject: [PATCH] PHPDoc fixes --- src/Symfony/Component/BrowserKit/Client.php | 12 ++++++------ .../Component/ClassLoader/ClassCollectionLoader.php | 6 +++--- .../Component/ClassLoader/MapFileClassLoader.php | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Symfony/Component/BrowserKit/Client.php b/src/Symfony/Component/BrowserKit/Client.php index 9373337f71..72a98d165c 100644 --- a/src/Symfony/Component/BrowserKit/Client.php +++ b/src/Symfony/Component/BrowserKit/Client.php @@ -269,7 +269,7 @@ abstract class Client /** * Filters the request * - * @param Request The request to filter + * @param Request $request The request to filter * * @return Request */ @@ -281,7 +281,7 @@ abstract class Client /** * Filters the Response * - * @param Response The Response to filter + * @param Response $response The Response to filter * * @return Response */ @@ -293,9 +293,9 @@ abstract class Client /** * Creates a crawler * - * @param string A uri - * @param string Content for the crawler to use - * @param string Content type + * @param string $uri A uri + * @param string $content Content for the crawler to use + * @param string $type Content type * * @return Crawler */ @@ -367,7 +367,7 @@ abstract class Client /** * Takes a URI and converts it to absolute if it is not already absolute. * - * @param string A uri + * @param string $uri A uri * @return string An absolute uri */ protected function getAbsoluteUri($uri) diff --git a/src/Symfony/Component/ClassLoader/ClassCollectionLoader.php b/src/Symfony/Component/ClassLoader/ClassCollectionLoader.php index 0773eb747a..eeb81cc90d 100644 --- a/src/Symfony/Component/ClassLoader/ClassCollectionLoader.php +++ b/src/Symfony/Component/ClassLoader/ClassCollectionLoader.php @@ -120,7 +120,7 @@ class ClassCollectionLoader /** * Adds brackets around each namespace if it's not already the case. * - * @param string Namespace string + * @param string $source Namespace string * * @return string Namespaces with brackets */ @@ -169,8 +169,8 @@ class ClassCollectionLoader /** * Writes a cache file * - * @param string Filename - * @param string Temporary file content + * @param string $file Filename + * @param string $content Temporary file content * * @throws \RuntimeException when a cache file cannot be written */ diff --git a/src/Symfony/Component/ClassLoader/MapFileClassLoader.php b/src/Symfony/Component/ClassLoader/MapFileClassLoader.php index 1cce5e22a6..a379970578 100644 --- a/src/Symfony/Component/ClassLoader/MapFileClassLoader.php +++ b/src/Symfony/Component/ClassLoader/MapFileClassLoader.php @@ -23,7 +23,7 @@ class MapFileClassLoader /** * Constructor * - * @param string Path to class mapping file + * @param string $file Path to class mapping file */ public function __construct($file) {