Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3245c1c

Browse files
committed
merged branch pborreli/typophpdoc (PR #6710)
This PR was merged into the master branch. Commits ------- b1c6881 Fixed PHPDoc Discussion ---------- Fixed PHPDoc
2 parents 5fb9bc6 + b1c6881 commit 3245c1c

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

src/Symfony/Bridge/Twig/Extension/HttpKernelExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class HttpKernelExtension extends \Twig_Extension
2626
/**
2727
* Constructor.
2828
*
29-
* @param HttpContentRenderer $kernel A HttpContentRenderer instance
29+
* @param HttpContentRenderer $renderer A HttpContentRenderer instance
3030
*/
3131
public function __construct(HttpContentRenderer $renderer)
3232
{

src/Symfony/Bundle/FrameworkBundle/Templating/Helper/ActionsHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ActionsHelper extends Helper
2727
/**
2828
* Constructor.
2929
*
30-
* @param HttpContentRenderer $kernel A HttpContentRenderer instance
30+
* @param HttpContentRenderer $renderer A HttpContentRenderer instance
3131
*/
3232
public function __construct(HttpContentRenderer $renderer)
3333
{

src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,8 +952,9 @@ private function getDefinitionsFromArguments(array $arguments)
952952
/**
953953
* Checks if a service id has a reference
954954
*
955-
* @param string $id
956-
* @param array $arguments
955+
* @param string $id
956+
* @param array $arguments
957+
* @param Boolean $deep
957958
*
958959
* @return Boolean
959960
*/

src/Symfony/Component/Finder/Shell/Command.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ function($bit) { return null !== $bit; }
251251
* Insert a string or a Command instance before the bit at given position $index (index starts from 0).
252252
*
253253
* @param string|Command $bit
254+
* @param integer $index
254255
*
255256
* @return Command The current Command instance
256257
*/

src/Symfony/Component/Routing/RequestContext.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class RequestContext
4444
* @param string $scheme The HTTP scheme
4545
* @param integer $httpPort The HTTP port
4646
* @param integer $httpsPort The HTTPS port
47+
* @param string $path The path
4748
*
4849
* @api
4950
*/

src/Symfony/Component/Security/Http/HttpUtils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class HttpUtils
3535
* Constructor.
3636
*
3737
* @param UrlGeneratorInterface $urlGenerator A UrlGeneratorInterface instance
38-
* @param UrlMatcherInterface|RequestMatcherInterface $matcher The Url or Request matcher
38+
* @param UrlMatcherInterface|RequestMatcherInterface $urlMatcher The Url or Request matcher
3939
*/
4040
public function __construct(UrlGeneratorInterface $urlGenerator = null, $urlMatcher = null)
4141
{

0 commit comments

Comments
 (0)