Skip to content

Commit 72b92c3

Browse files
Merge branch '2.7' into 2.8
* 2.7: [2.7] More docblock fixes
2 parents 96dcb10 + 1e0f226 commit 72b92c3

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
@@ -465,8 +465,6 @@ private function fillNextRows(array $rows, $line)
465465
/**
466466
* fill cells for a row that contains colspan > 1.
467467
*
468-
* @param array|\Traversable $row
469-
*
470468
* @return array
471469
*/
472470
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
@@ -461,10 +461,6 @@ public function getBlockPrefix()
461461

462462
/**
463463
* Adds the sub fields for an expanded choice field.
464-
*
465-
* @param FormBuilderInterface $builder The form builder
466-
* @param array $choiceViews The choice view objects
467-
* @param array $options The build options
468464
*/
469465
private function addSubForms(FormBuilderInterface $builder, array $choiceViews, array $options)
470466
{
@@ -485,11 +481,6 @@ private function addSubForms(FormBuilderInterface $builder, array $choiceViews,
485481
}
486482

487483
/**
488-
* @param FormBuilderInterface $builder
489-
* @param $name
490-
* @param $choiceView
491-
* @param array $options
492-
*
493484
* @return mixed
494485
*/
495486
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)