Skip to content

Commit d5c15b6

Browse files
Merge branch '2.8' into 3.3
* 2.8: [DI] minor docblock fixes
2 parents 63397a0 + 52cb080 commit d5c15b6

12 files changed

+0
-50
lines changed

Annotation/Groups.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ class Groups
2929
private $groups;
3030

3131
/**
32-
* @param array $data
33-
*
3432
* @throws InvalidArgumentException
3533
*/
3634
public function __construct(array $data)

Encoder/JsonDecode.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ public function supportsDecoding($format)
105105
/**
106106
* Merges the default options of the Json Decoder with the passed context.
107107
*
108-
* @param array $context
109-
*
110108
* @return array
111109
*/
112110
private function resolveContext(array $context)

Encoder/JsonEncode.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ public function supportsEncoding($format)
5757
/**
5858
* Merge default json encode options with context.
5959
*
60-
* @param array $context
61-
*
6260
* @return array
6361
*/
6462
private function resolveContext(array $context = array())

Encoder/XmlEncoder.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,8 +516,6 @@ private function selectNodeType(\DOMNode $node, $val)
516516
/**
517517
* Get real XML root node name, taking serializer options into account.
518518
*
519-
* @param array $context
520-
*
521519
* @return string
522520
*/
523521
private function resolveXmlRootName(array $context = array())

Mapping/AttributeMetadata.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,13 @@
1919
class AttributeMetadata implements AttributeMetadataInterface
2020
{
2121
/**
22-
* @var string
23-
*
2422
* @internal This property is public in order to reduce the size of the
2523
* class' serialized representation. Do not access it. Use
2624
* {@link getName()} instead.
2725
*/
2826
public $name;
2927

3028
/**
31-
* @var array
32-
*
3329
* @internal This property is public in order to reduce the size of the
3430
* class' serialized representation. Do not access it. Use
3531
* {@link getGroups()} instead.

Mapping/AttributeMetadataInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ public function getMaxDepth();
5959

6060
/**
6161
* Merges an {@see AttributeMetadataInterface} with in the current one.
62-
*
63-
* @param AttributeMetadataInterface $attributeMetadata
6462
*/
6563
public function merge(AttributeMetadataInterface $attributeMetadata);
6664
}

Mapping/ClassMetadataInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ public function getName();
3333

3434
/**
3535
* Adds an {@link AttributeMetadataInterface}.
36-
*
37-
* @param AttributeMetadataInterface $attributeMetadata
3836
*/
3937
public function addAttributeMetadata(AttributeMetadataInterface $attributeMetadata);
4038

@@ -47,8 +45,6 @@ public function getAttributesMetadata();
4745

4846
/**
4947
* Merges a {@link ClassMetadataInterface} in the current one.
50-
*
51-
* @param ClassMetadataInterface $classMetadata
5248
*/
5349
public function merge(ClassMetadataInterface $classMetadata);
5450

Mapping/Factory/ClassMetadataFactory.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,10 @@ class ClassMetadataFactory implements ClassMetadataFactoryInterface
2525
{
2626
use ClassResolverTrait;
2727

28-
/**
29-
* @var LoaderInterface
30-
*/
3128
private $loader;
32-
33-
/**
34-
* @var Cache
35-
*/
3629
private $cache;
37-
38-
/**
39-
* @var array
40-
*/
4130
private $loadedClasses;
4231

43-
/**
44-
* @param LoaderInterface $loader
45-
* @param Cache|null $cache
46-
*/
4732
public function __construct(LoaderInterface $loader, Cache $cache = null)
4833
{
4934
$this->loader = $loader;

Mapping/Loader/AnnotationLoader.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,8 @@
2525
*/
2626
class AnnotationLoader implements LoaderInterface
2727
{
28-
/**
29-
* @var Reader
30-
*/
3128
private $reader;
3229

33-
/**
34-
* @param Reader $reader
35-
*/
3630
public function __construct(Reader $reader)
3731
{
3832
$this->reader = $reader;

Mapping/Loader/LoaderInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@
2121
interface LoaderInterface
2222
{
2323
/**
24-
* Load class metadata.
25-
*
26-
* @param ClassMetadataInterface $classMetadata A metadata
27-
*
2824
* @return bool
2925
*/
3026
public function loadClassMetadata(ClassMetadataInterface $classMetadata);

0 commit comments

Comments
 (0)