Skip to content

Commit 3b8dcab

Browse files
Merge branch '2.8' into 3.3
* 2.8: [Intl] Make intl-data tests pass and save language aliases again Remove useless docblocks [PropertyInfo] Remove useless docblocks
2 parents d1fa69f + c8a4068 commit 3b8dcab

15 files changed

+3
-154
lines changed

Constraint.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,21 @@ abstract class Constraint
3333
{
3434
/**
3535
* The name of the group given to all constraints with no explicit group.
36-
*
37-
* @var string
3836
*/
3937
const DEFAULT_GROUP = 'Default';
4038

4139
/**
4240
* Marks a constraint that can be put onto classes.
43-
*
44-
* @var string
4541
*/
4642
const CLASS_CONSTRAINT = 'class';
4743

4844
/**
4945
* Marks a constraint that can be put onto properties.
50-
*
51-
* @var string
5246
*/
5347
const PROPERTY_CONSTRAINT = 'property';
5448

5549
/**
5650
* Maps error codes to the names of their constants.
57-
*
58-
* @var array
5951
*/
6052
protected static $errorNames = array();
6153

ConstraintValidator.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,11 @@ abstract class ConstraintValidator implements ConstraintValidatorInterface
2323
/**
2424
* Whether to format {@link \DateTime} objects as RFC-3339 dates
2525
* ("Y-m-d H:i:s").
26-
*
27-
* @var int
2826
*/
2927
const PRETTY_DATE = 1;
3028

3129
/**
3230
* Whether to cast objects with a "__toString()" method to strings.
33-
*
34-
* @var int
3531
*/
3632
const OBJECT_TO_STRING = 2;
3733

Constraints/EmailValidator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
*/
2424
class EmailValidator extends ConstraintValidator
2525
{
26-
/**
27-
* @var bool
28-
*/
2926
private $isStrict;
3027

28+
/**
29+
* @param bool $strict
30+
*/
3131
public function __construct($strict = false)
3232
{
3333
$this->isStrict = $strict;

Constraints/ExpressionValidator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@
2323
*/
2424
class ExpressionValidator extends ConstraintValidator
2525
{
26-
/**
27-
* @var ExpressionLanguage
28-
*/
2926
private $expressionLanguage;
3027

3128
public function __construct($propertyAccessor = null, ExpressionLanguage $expressionLanguage = null)

Context/ExecutionContextFactory.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,7 @@
2424
*/
2525
class ExecutionContextFactory implements ExecutionContextFactoryInterface
2626
{
27-
/**
28-
* @var TranslatorInterface
29-
*/
3027
private $translator;
31-
32-
/**
33-
* @var string|null
34-
*/
3528
private $translationDomain;
3629

3730
/**

Mapping/Factory/LazyLoadingMetadataFactory.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,7 @@
3838
*/
3939
class LazyLoadingMetadataFactory implements MetadataFactoryInterface
4040
{
41-
/**
42-
* The loader for loading the class metadata.
43-
*
44-
* @var LoaderInterface|null
45-
*/
4641
protected $loader;
47-
48-
/**
49-
* The cache for caching class metadata.
50-
*
51-
* @var CacheInterface|null
52-
*/
5342
protected $cache;
5443

5544
/**

Mapping/Loader/AnnotationLoader.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
*/
2727
class AnnotationLoader implements LoaderInterface
2828
{
29-
/**
30-
* @var Reader
31-
*/
3229
protected $reader;
3330

3431
public function __construct(Reader $reader)

Mapping/Loader/FileLoader.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@
2323
*/
2424
abstract class FileLoader extends AbstractLoader
2525
{
26-
/**
27-
* The file to load.
28-
*
29-
* @var string
30-
*/
3126
protected $file;
3227

3328
/**

Mapping/Loader/LoaderChain.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
*/
2626
class LoaderChain implements LoaderInterface
2727
{
28-
/**
29-
* @var LoaderInterface[]
30-
*/
3128
protected $loaders;
3229

3330
/**

Mapping/Loader/StaticMethodLoader.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@
2121
*/
2222
class StaticMethodLoader implements LoaderInterface
2323
{
24-
/**
25-
* The name of the method to call.
26-
*
27-
* @var string
28-
*/
2924
protected $methodName;
3025

3126
/**

0 commit comments

Comments
 (0)