PHPDoc fixes

This commit is contained in:
Tim Nagel 2011-02-06 14:27:05 -08:00 committed by Fabien Potencier
parent 108efc6ec9
commit 0d6a6b79f0
3 changed files with 10 additions and 10 deletions

View File

@ -269,7 +269,7 @@ abstract class Client
/** /**
* Filters the request * Filters the request
* *
* @param Request The request to filter * @param Request $request The request to filter
* *
* @return Request * @return Request
*/ */
@ -281,7 +281,7 @@ abstract class Client
/** /**
* Filters the Response * Filters the Response
* *
* @param Response The Response to filter * @param Response $response The Response to filter
* *
* @return Response * @return Response
*/ */
@ -293,9 +293,9 @@ abstract class Client
/** /**
* Creates a crawler * Creates a crawler
* *
* @param string A uri * @param string $uri A uri
* @param string Content for the crawler to use * @param string $content Content for the crawler to use
* @param string Content type * @param string $type Content type
* *
* @return Crawler * @return Crawler
*/ */
@ -367,7 +367,7 @@ abstract class Client
/** /**
* Takes a URI and converts it to absolute if it is not already absolute. * 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 * @return string An absolute uri
*/ */
protected function getAbsoluteUri($uri) protected function getAbsoluteUri($uri)

View File

@ -120,7 +120,7 @@ class ClassCollectionLoader
/** /**
* Adds brackets around each namespace if it's not already the case. * 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 * @return string Namespaces with brackets
*/ */
@ -169,8 +169,8 @@ class ClassCollectionLoader
/** /**
* Writes a cache file * Writes a cache file
* *
* @param string Filename * @param string $file Filename
* @param string Temporary file content * @param string $content Temporary file content
* *
* @throws \RuntimeException when a cache file cannot be written * @throws \RuntimeException when a cache file cannot be written
*/ */

View File

@ -23,7 +23,7 @@ class MapFileClassLoader
/** /**
* Constructor * Constructor
* *
* @param string Path to class mapping file * @param string $file Path to class mapping file
*/ */
public function __construct($file) public function __construct($file)
{ {