Tim Nagel vor 14 Jahren
Ursprung
Commit
0d6a6b79f0

+ 6 - 6
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)

+ 3 - 3
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
      */

+ 1 - 1
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)
     {