Skip to content

Commit d3d32d9

Browse files
Merge branch '2.8' into 3.3
* 2.8: [2.7] More docblock fixes
2 parents 9a20a97 + 72b92c3 commit d3d32d9

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
@@ -504,8 +504,6 @@ private function fillNextRows(array $rows, $line)
504504
/**
505505
* fill cells for a row that contains colspan > 1.
506506
*
507-
* @param array|\Traversable $row
508-
*
509507
* @return array
510508
*/
511509
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
@@ -53,8 +53,6 @@ class GraphvizDumper extends Dumper
5353
* * node.definition: The default options for services that are defined via service definition instances
5454
* * node.missing: The default options for missing services
5555
*
56-
* @param array $options An array of options
57-
*
5856
* @return string The dot representation of the service container
5957
*/
6058
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
@@ -63,7 +63,7 @@ class PhpDumper extends Dumper
6363
private $usedMethodNames;
6464

6565
/**
66-
* @var \Symfony\Component\DependencyInjection\LazyProxy\PhpDumper\DumperInterface
66+
* @var ProxyDumper
6767
*/
6868
private $proxyDumper;
6969

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
@@ -1093,9 +1093,6 @@ public function testMakePathRelative($endPath, $startPath, $expectedPath)
10931093
$this->assertEquals($expectedPath, $path);
10941094
}
10951095

1096-
/**
1097-
* @return array
1098-
*/
10991096
public function providePathsForMakePathRelative()
11001097
{
11011098
$paths = array(
@@ -1333,9 +1330,6 @@ public function testIsAbsolutePath($path, $expectedResult)
13331330
$this->assertEquals($expectedResult, $result);
13341331
}
13351332

1336-
/**
1337-
* @return array
1338-
*/
13391333
public function providePathsForIsAbsolutePath()
13401334
{
13411335
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
@@ -364,10 +364,6 @@ public function getBlockPrefix()
364364

365365
/**
366366
* Adds the sub fields for an expanded choice field.
367-
*
368-
* @param FormBuilderInterface $builder The form builder
369-
* @param array $choiceViews The choice view objects
370-
* @param array $options The build options
371367
*/
372368
private function addSubForms(FormBuilderInterface $builder, array $choiceViews, array $options)
373369
{
@@ -388,11 +384,6 @@ private function addSubForms(FormBuilderInterface $builder, array $choiceViews,
388384
}
389385

390386
/**
391-
* @param FormBuilderInterface $builder
392-
* @param $name
393-
* @param $choiceView
394-
* @param array $options
395-
*
396387
* @return mixed
397388
*/
398389
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
@@ -20,8 +20,6 @@
2020
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
2121

2222
/**
23-
* RequestDataCollector.
24-
*
2523
* @author Fabien Potencier <[email protected]>
2624
*/
2725
class RequestDataCollector extends DataCollector implements EventSubscriberInterface, LateDataCollectorInterface

0 commit comments

Comments
 (0)