PHPDoc style fix

This commit is contained in:
Tim Nagel 2011-02-06 15:58:54 -08:00 committed by Fabien Potencier
parent 803cc91b8b
commit 93fd935b70
4 changed files with 6 additions and 6 deletions

View File

@ -267,7 +267,7 @@ abstract class Client
} }
/** /**
* Filters the request * Filters the request.
* *
* @param Request $request The request to filter * @param Request $request The request to filter
* *
@ -279,7 +279,7 @@ abstract class Client
} }
/** /**
* Filters the Response * Filters the Response.
* *
* @param Response $response The Response to filter * @param Response $response The Response to filter
* *
@ -291,7 +291,7 @@ abstract class Client
} }
/** /**
* Creates a crawler * Creates a crawler.
* *
* @param string $uri A uri * @param string $uri A uri
* @param string $content Content for the crawler to use * @param string $content Content for the crawler to use

View File

@ -40,7 +40,7 @@ class Response
} }
/** /**
* Converts the response object to string containing all headers and the response content * Converts the response object to string containing all headers and the response content.
* *
* @return string The response with headers and content * @return string The response with headers and content
*/ */

View File

@ -167,7 +167,7 @@ class ClassCollectionLoader
} }
/** /**
* Writes a cache file * Writes a cache file.
* *
* @param string $file Filename * @param string $file Filename
* @param string $content Temporary file content * @param string $content Temporary file content

View File

@ -21,7 +21,7 @@ class MapFileClassLoader
protected $map = array(); protected $map = array();
/** /**
* Constructor * Constructor.
* *
* @param string $file Path to class mapping file * @param string $file Path to class mapping file
*/ */