Fixed PHPDoc

This commit is contained in:
Pascal Borreli 2013-01-11 17:38:19 +00:00
parent aec3c8aa1d
commit b1c68815f5
6 changed files with 8 additions and 5 deletions

View File

@ -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)
{

View File

@ -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)
{

View File

@ -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
*/

View File

@ -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
*/

View File

@ -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
*/

View File

@ -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)
{