From b1c68815f58e32e4b8ea9a55ca2fe84fe0a0e6d9 Mon Sep 17 00:00:00 2001 From: Pascal Borreli Date: Fri, 11 Jan 2013 17:38:19 +0000 Subject: [PATCH] Fixed PHPDoc --- src/Symfony/Bridge/Twig/Extension/HttpKernelExtension.php | 2 +- .../FrameworkBundle/Templating/Helper/ActionsHelper.php | 2 +- .../Component/DependencyInjection/Dumper/PhpDumper.php | 5 +++-- src/Symfony/Component/Finder/Shell/Command.php | 1 + src/Symfony/Component/Routing/RequestContext.php | 1 + src/Symfony/Component/Security/Http/HttpUtils.php | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Extension/HttpKernelExtension.php b/src/Symfony/Bridge/Twig/Extension/HttpKernelExtension.php index 2e406fc1d9..cb18b5f643 100644 --- a/src/Symfony/Bridge/Twig/Extension/HttpKernelExtension.php +++ b/src/Symfony/Bridge/Twig/Extension/HttpKernelExtension.php @@ -26,7 +26,7 @@ class HttpKernelExtension extends \Twig_Extension /** * Constructor. * - * @param HttpContentRenderer $kernel A HttpContentRenderer instance + * @param HttpContentRenderer $renderer A HttpContentRenderer instance */ public function __construct(HttpContentRenderer $renderer) { diff --git a/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/ActionsHelper.php b/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/ActionsHelper.php index abce1d10bf..f07adb2ce2 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/ActionsHelper.php +++ b/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/ActionsHelper.php @@ -27,7 +27,7 @@ class ActionsHelper extends Helper /** * Constructor. * - * @param HttpContentRenderer $kernel A HttpContentRenderer instance + * @param HttpContentRenderer $renderer A HttpContentRenderer instance */ public function __construct(HttpContentRenderer $renderer) { diff --git a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php index 22aabf2745..2a29b01c90 100644 --- a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php +++ b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php @@ -952,8 +952,9 @@ EOF; /** * Checks if a service id has a reference * - * @param string $id - * @param array $arguments + * @param string $id + * @param array $arguments + * @param Boolean $deep * * @return Boolean */ diff --git a/src/Symfony/Component/Finder/Shell/Command.php b/src/Symfony/Component/Finder/Shell/Command.php index 0c4a3118cf..1a060c8cae 100644 --- a/src/Symfony/Component/Finder/Shell/Command.php +++ b/src/Symfony/Component/Finder/Shell/Command.php @@ -251,6 +251,7 @@ class Command * Insert a string or a Command instance before the bit at given position $index (index starts from 0). * * @param string|Command $bit + * @param integer $index * * @return Command The current Command instance */ diff --git a/src/Symfony/Component/Routing/RequestContext.php b/src/Symfony/Component/Routing/RequestContext.php index 0286e842de..132ecc743c 100644 --- a/src/Symfony/Component/Routing/RequestContext.php +++ b/src/Symfony/Component/Routing/RequestContext.php @@ -44,6 +44,7 @@ class RequestContext * @param string $scheme The HTTP scheme * @param integer $httpPort The HTTP port * @param integer $httpsPort The HTTPS port + * @param string $path The path * * @api */ diff --git a/src/Symfony/Component/Security/Http/HttpUtils.php b/src/Symfony/Component/Security/Http/HttpUtils.php index a3c6f61bf8..eb7894cd8b 100644 --- a/src/Symfony/Component/Security/Http/HttpUtils.php +++ b/src/Symfony/Component/Security/Http/HttpUtils.php @@ -35,7 +35,7 @@ class HttpUtils * Constructor. * * @param UrlGeneratorInterface $urlGenerator A UrlGeneratorInterface instance - * @param UrlMatcherInterface|RequestMatcherInterface $matcher The Url or Request matcher + * @param UrlMatcherInterface|RequestMatcherInterface $urlMatcher The Url or Request matcher */ public function __construct(UrlGeneratorInterface $urlGenerator = null, $urlMatcher = null) {