Skip to content

Commit 95a6c1c

Browse files
author
Hugo Hamon
committed
Fixes various phpdoc and coding standards.
1 parent 1dfca84 commit 95a6c1c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ protected function filterRequest(DomRequest $request)
162162
* If the size of a file is greater than the allowed size (from php.ini) then
163163
* an invalid UploadedFile is returned with an error set to UPLOAD_ERR_INI_SIZE.
164164
*
165-
* @see Symfony\Component\HttpFoundation\File\UploadedFile
165+
* @see UploadedFile
166166
*
167167
* @param array $files An array of files
168168
*

Controller/ControllerReference.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
namespace Symfony\Component\HttpKernel\Controller;
1313

14+
use Symfony\Component\HttpKernel\Fragment\FragmentRendererInterface;
15+
1416
/**
1517
* Acts as a marker and a data holder for a Controller.
1618
*
@@ -20,8 +22,7 @@
2022
*
2123
* @author Fabien Potencier <fabien@symfony.com>
2224
*
23-
* @see Symfony\Component\HttpKernel\FragmentRenderer
24-
* @see Symfony\Component\HttpKernel\Fragment\FragmentRendererInterface
25+
* @see FragmentRendererInterface
2526
*/
2627
class ControllerReference
2728
{

Fragment/EsiFragmentRenderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function __construct(Esi $esi, FragmentRendererInterface $inlineStrategy,
5656
* * alt: an alternative URI to render in case of an error
5757
* * comment: a comment to add when returning an esi:include tag
5858
*
59-
* @see Symfony\Component\HttpKernel\HttpCache\ESI
59+
* @see Esi
6060
*/
6161
public function render($uri, Request $request, array $options = array())
6262
{

Fragment/FragmentRendererInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* Interface implemented by all rendering strategies.
2020
*
2121
* @author Fabien Potencier <fabien@symfony.com>
22-
*
23-
* @see Symfony\Component\HttpKernel\FragmentRenderer
2422
*/
2523
interface FragmentRendererInterface
2624
{

Tests/Fixtures/ExtensionPresentBundle/Command/BarCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
namespace Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionPresentBundle\Command;
44

55
use Symfony\Component\Console\Command\Command;
6+
use Symfony\Component\HttpKernel\Bundle;
67

78
/**
89
* This command has a required parameter on the constructor and will be ignored by the default Bundle implementation.
910
*
10-
* @see Symfony\Component\HttpKernel\Bundle\Bundle::registerCommands
11+
* @see Bundle::registerCommands()
1112
*/
1213
class BarCommand extends Command
1314
{

0 commit comments

Comments
 (0)