minor #9991 Fix for a couple of undefined classes in docblocks (dave1010)

This PR was submitted for the 2.3-dev branch but it was merged into the 2.3 branch instead (closes #9991).

Discussion
----------

Fix for a couple of undefined classes in docblocks

These are the 2 that I've come across, but there may be some more.

Commits
-------

3918d6d Fix for a couple of undefined classes in docblocks
This commit is contained in:
Fabien Potencier 2014-01-10 15:42:38 +01:00
commit 7a995ce5bc
2 changed files with 3 additions and 3 deletions

View File

@ -1088,7 +1088,7 @@ class Application
* if nothing is found in $collection, try in $abbrevs * if nothing is found in $collection, try in $abbrevs
* *
* @param string $name The string * @param string $name The string
* @param array|Traversable $collection The collection * @param array|\Traversable $collection The collection
* @param array $abbrevs The abbreviations * @param array $abbrevs The abbreviations
* @param Closure|string|array $callback The callable to transform collection item before comparison * @param Closure|string|array $callback The callable to transform collection item before comparison
* *

View File

@ -100,8 +100,8 @@ class FullTransformer
/** /**
* Return the formatted ICU value for the matched date characters * Return the formatted ICU value for the matched date characters
* *
* @param string $dateChars The date characters to be replaced with a formatted ICU value * @param string $dateChars The date characters to be replaced with a formatted ICU value
* @param DateTime $dateTime A DateTime object to be used to generate the formatted value * @param \DateTime $dateTime A DateTime object to be used to generate the formatted value
* *
* @return string The formatted value * @return string The formatted value
* *