Skip to content

Commit 7b8e4b9

Browse files
Merge branch '3.4'
* 3.4: [HttpFoundation] refactoring: calculate when need [Serializer] Fix extra attributes when no group specified [Intl] Make intl-data tests pass and save language aliases again [FrameworkBundle][Config] fix: do not add resource checkers for debug=false [DI] Fix "almost-circular" dependencies handling [Console] Fix CommandTester::setInputs() docblock Only enabling validation if it is present Fix displaying errors for bootstrap 4 [Serializer] readd default argument value Fix reference dump for deprecated nodes [PhpUnitBridge] Fixed fatal error in CoverageListener when something goes wrong in Test::setUpBeforeClass [HttpKernel] Let the storage manage the session starts [VarDumper] fix trailling comma when dumping an exception [Validator] Fix TraceableValidator is reset on data collector instantiation Remove useless docblocks [FrameworkBundle] Fix docblocks [PropertyInfo] Remove useless docblocks
2 parents 220f8a4 + 7134b93 commit 7b8e4b9

File tree

6 files changed

+0
-90
lines changed

6 files changed

+0
-90
lines changed

Node/ElementNode.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,7 @@
2323
*/
2424
class ElementNode extends AbstractNode
2525
{
26-
/**
27-
* @var string|null
28-
*/
2926
private $namespace;
30-
31-
/**
32-
* @var string|null
33-
*/
3427
private $element;
3528

3629
/**

Parser/Reader.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,8 @@
2323
*/
2424
class Reader
2525
{
26-
/**
27-
* @var string
28-
*/
2926
private $source;
30-
31-
/**
32-
* @var int
33-
*/
3427
private $length;
35-
36-
/**
37-
* @var int
38-
*/
3928
private $position = 0;
4029

4130
/**

Parser/Token.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,8 @@ class Token
3131
const TYPE_NUMBER = 'number';
3232
const TYPE_STRING = 'string';
3333

34-
/**
35-
* @var int
36-
*/
3734
private $type;
38-
39-
/**
40-
* @var string
41-
*/
4235
private $value;
43-
44-
/**
45-
* @var int
46-
*/
4736
private $position;
4837

4938
/**

Parser/Tokenizer/TokenizerPatterns.php

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -23,64 +23,17 @@
2323
*/
2424
class TokenizerPatterns
2525
{
26-
/**
27-
* @var string
28-
*/
2926
private $unicodeEscapePattern;
30-
31-
/**
32-
* @var string
33-
*/
3427
private $simpleEscapePattern;
35-
36-
/**
37-
* @var string
38-
*/
3928
private $newLineEscapePattern;
40-
41-
/**
42-
* @var string
43-
*/
4429
private $escapePattern;
45-
46-
/**
47-
* @var string
48-
*/
4930
private $stringEscapePattern;
50-
51-
/**
52-
* @var string
53-
*/
5431
private $nonAsciiPattern;
55-
56-
/**
57-
* @var string
58-
*/
5932
private $nmCharPattern;
60-
61-
/**
62-
* @var string
63-
*/
6433
private $nmStartPattern;
65-
66-
/**
67-
* @var string
68-
*/
6934
private $identifierPattern;
70-
71-
/**
72-
* @var string
73-
*/
7435
private $hashPattern;
75-
76-
/**
77-
* @var string
78-
*/
7936
private $numberPattern;
80-
81-
/**
82-
* @var string
83-
*/
8437
private $quotedStringPattern;
8538

8639
public function __construct()

XPath/Extension/NodeExtension.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ class NodeExtension extends AbstractExtension
3131
const ATTRIBUTE_NAME_IN_LOWER_CASE = 2;
3232
const ATTRIBUTE_VALUE_IN_LOWER_CASE = 4;
3333

34-
/**
35-
* @var int
36-
*/
3734
private $flags;
3835

3936
/**

XPath/XPathExpr.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,8 @@
2323
*/
2424
class XPathExpr
2525
{
26-
/**
27-
* @var string
28-
*/
2926
private $path;
30-
31-
/**
32-
* @var string
33-
*/
3427
private $element;
35-
36-
/**
37-
* @var string
38-
*/
3928
private $condition;
4029

4130
public function __construct(string $path = '', string $element = '*', string $condition = '', bool $starPrefix = false)

0 commit comments

Comments
 (0)