Skip to content

Commit 629895c

Browse files
Merge branch '3.3' into 3.4
* 3.3: [3.3] More docblock fixes [2.7] More docblock fixes
2 parents b2edd51 + 7bcb90f commit 629895c

File tree

36 files changed

+14
-155
lines changed

36 files changed

+14
-155
lines changed

src/Symfony/Bridge/Doctrine/Tests/Fixtures/Type/StringWrapper.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
class StringWrapper
1515
{
16-
/**
17-
* @var string
18-
*/
1916
private $string;
2017

2118
/**

src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ public function handleError($type, $msg, $file, $line, $context = array())
340340
}
341341

342342
/**
343-
* @param Test $test
343+
* @param TestCase $test
344344
*
345345
* @return bool
346346
*/

src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/XmlDescriptor.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,6 @@ private function getContainerDefinitionDocument(Definition $definition, $id = nu
409409
}
410410

411411
/**
412-
* @param array $arguments
413-
*
414412
* @return \DOMNode[]
415413
*/
416414
private function getArgumentNodes(array $arguments, \DOMDocument $dom)
@@ -521,10 +519,6 @@ private function getEventDispatcherListenersDocument(EventDispatcherInterface $e
521519
return $dom;
522520
}
523521

524-
/**
525-
* @param \DOMElement $element
526-
* @param array $eventListeners
527-
*/
528522
private function appendEventListenerDocument(EventDispatcherInterface $eventDispatcher, $event, \DOMElement $element, array $eventListeners)
529523
{
530524
foreach ($eventListeners as $listener) {

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/Cache/Adapter/PhpArrayAdapter.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,6 @@ public function commit()
227227
}
228228

229229
/**
230-
* Generator for items.
231-
*
232-
* @param array $keys
233-
*
234230
* @return \Generator
235231
*/
236232
private function generateItems(array $keys)

src/Symfony/Component/Config/ResourceCheckerConfigCacheFactory.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
*/
2020
class ResourceCheckerConfigCacheFactory implements ConfigCacheFactoryInterface
2121
{
22-
/**
23-
* @var iterable|ResourceCheckerInterface[]
24-
*/
2522
private $resourceCheckers = array();
2623

2724
/**

src/Symfony/Component/Console/Descriptor/TextDescriptor.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,11 +253,9 @@ private function writeText($content, array $options = array())
253253
/**
254254
* Formats command aliases to show them in the command description.
255255
*
256-
* @param Command $command
257-
*
258256
* @return string
259257
*/
260-
private function getCommandAliasesText($command)
258+
private function getCommandAliasesText(Command $command)
261259
{
262260
$text = '';
263261
$aliases = $command->getAliases();

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

Lines changed: 1 addition & 5 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)
@@ -578,10 +576,8 @@ private function getRowColumns(array $row)
578576

579577
/**
580578
* Calculates columns widths.
581-
*
582-
* @param array $rows
583579
*/
584-
private function calculateColumnsWidth($rows)
580+
private function calculateColumnsWidth(array $rows)
585581
{
586582
for ($column = 0; $column < $this->numberOfColumns; ++$column) {
587583
$lengths = array();

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
@@ -65,7 +65,7 @@ class PhpDumper extends Dumper
6565
private $asFiles;
6666

6767
/**
68-
* @var \Symfony\Component\DependencyInjection\LazyProxy\PhpDumper\DumperInterface
68+
* @var ProxyDumper
6969
*/
7070
private $proxyDumper;
7171

0 commit comments

Comments
 (0)