Skip to content

Commit ac671ac

Browse files
[2.7] More docblock fixes
1 parent 4371d03 commit ac671ac

File tree

21 files changed

+8
-88
lines changed

21 files changed

+8
-88
lines changed

src/Symfony/Component/BrowserKit/Cookie.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,6 @@ public function __construct($name, $value, $expires = null, $path = null, $domai
8080

8181
/**
8282
* Returns the HTTP representation of the Cookie.
83-
*
84-
* @return string The HTTP representation of the Cookie
85-
*
86-
* @throws \UnexpectedValueException
8783
*/
8884
public function __toString()
8985
{

src/Symfony/Component/Console/Helper/Table.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,6 @@ private function fillNextRows(array $rows, $line)
419419
/**
420420
* fill cells for a row that contains colspan > 1.
421421
*
422-
* @param array|\Traversable $row
423-
*
424422
* @return array
425423
*/
426424
private function fillCells($row)

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ class GraphvizDumper extends Dumper
5454
* * node.definition: The default options for services that are defined via service definition instances
5555
* * node.missing: The default options for missing services
5656
*
57-
* @param array $options An array of options
58-
*
5957
* @return string The dot representation of the service container
6058
*/
6159
public function dump(array $options = array())

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class PhpDumper extends Dumper
6262
private $expressionLanguageProviders = array();
6363

6464
/**
65-
* @var \Symfony\Component\DependencyInjection\LazyProxy\PhpDumper\DumperInterface
65+
* @var ProxyDumper
6666
*/
6767
private $proxyDumper;
6868

src/Symfony/Component/DependencyInjection/Variable.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ public function __construct($name)
3636
$this->name = $name;
3737
}
3838

39-
/**
40-
* Converts the object to a string.
41-
*
42-
* @return string
43-
*/
4439
public function __toString()
4540
{
4641
return $this->name;

src/Symfony/Component/Filesystem/Tests/FilesystemTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -838,9 +838,6 @@ public function testMakePathRelative($endPath, $startPath, $expectedPath)
838838
$this->assertEquals($expectedPath, $path);
839839
}
840840

841-
/**
842-
* @return array
843-
*/
844841
public function providePathsForMakePathRelative()
845842
{
846843
$paths = array(
@@ -1078,9 +1075,6 @@ public function testIsAbsolutePath($path, $expectedResult)
10781075
$this->assertEquals($expectedResult, $result);
10791076
}
10801077

1081-
/**
1082-
* @return array
1083-
*/
10841078
public function providePathsForIsAbsolutePath()
10851079
{
10861080
return array(

src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -444,10 +444,6 @@ public function getName()
444444

445445
/**
446446
* Adds the sub fields for an expanded choice field.
447-
*
448-
* @param FormBuilderInterface $builder The form builder
449-
* @param array $choiceViews The choice view objects
450-
* @param array $options The build options
451447
*/
452448
private function addSubForms(FormBuilderInterface $builder, array $choiceViews, array $options)
453449
{
@@ -468,11 +464,6 @@ private function addSubForms(FormBuilderInterface $builder, array $choiceViews,
468464
}
469465

470466
/**
471-
* @param FormBuilderInterface $builder
472-
* @param $name
473-
* @param $choiceView
474-
* @param array $options
475-
*
476467
* @return mixed
477468
*/
478469
private function addSubForm(FormBuilderInterface $builder, $name, ChoiceView $choiceView, array $options)

src/Symfony/Component/Form/FormEvent.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ class FormEvent extends Event
2121
private $form;
2222
protected $data;
2323

24-
/**
25-
* Constructs an event.
26-
*
27-
* @param FormInterface $form The associated form
28-
* @param mixed $data The data
29-
*/
3024
public function __construct(FormInterface $form, $data)
3125
{
3226
$this->form = $form;

src/Symfony/Component/Form/Tests/Extension/Core/DataMapper/PropertyPathMapperTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ protected function setUp()
4141
}
4242

4343
/**
44-
* @param $path
45-
*
4644
* @return \PHPUnit_Framework_MockObject_MockObject
4745
*/
4846
private function getPropertyPath($path)

src/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
2020

2121
/**
22-
* RequestDataCollector.
23-
*
2422
* @author Fabien Potencier <[email protected]>
2523
*/
2624
class RequestDataCollector extends DataCollector implements EventSubscriberInterface

0 commit comments

Comments
 (0)