Skip to content

Commit cc98d3f

Browse files
Merge branch '2.8' into 3.3
* 2.8: [DI] minor docblock fixes
2 parents 0744765 + 79ff4f6 commit cc98d3f

25 files changed

+1
-287
lines changed

Node/AttributeNode.php

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -23,29 +23,10 @@
2323
*/
2424
class AttributeNode extends AbstractNode
2525
{
26-
/**
27-
* @var NodeInterface
28-
*/
2926
private $selector;
30-
31-
/**
32-
* @var string
33-
*/
3427
private $namespace;
35-
36-
/**
37-
* @var string
38-
*/
3928
private $attribute;
40-
41-
/**
42-
* @var string
43-
*/
4429
private $operator;
45-
46-
/**
47-
* @var string
48-
*/
4930
private $value;
5031

5132
/**

Node/ClassNode.php

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

3629
/**

Node/CombinedSelectorNode.php

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

4130
/**

Node/FunctionNode.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,8 @@
2525
*/
2626
class FunctionNode extends AbstractNode
2727
{
28-
/**
29-
* @var NodeInterface
30-
*/
3128
private $selector;
32-
33-
/**
34-
* @var string
35-
*/
3629
private $name;
37-
38-
/**
39-
* @var Token[]
40-
*/
4130
private $arguments;
4231

4332
/**

Node/HashNode.php

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

3629
/**

Node/NegationNode.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,9 @@
2323
*/
2424
class NegationNode extends AbstractNode
2525
{
26-
/**
27-
* @var NodeInterface
28-
*/
2926
private $selector;
30-
31-
/**
32-
* @var NodeInterface
33-
*/
3427
private $subSelector;
3528

36-
/**
37-
* @param NodeInterface $selector
38-
* @param NodeInterface $subSelector
39-
*/
4029
public function __construct(NodeInterface $selector, NodeInterface $subSelector)
4130
{
4231
$this->selector = $selector;

Node/PseudoNode.php

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

3629
/**

Node/SelectorNode.php

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

3629
/**

Node/Specificity.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,8 @@ class Specificity
2929
const B_FACTOR = 10;
3030
const C_FACTOR = 1;
3131

32-
/**
33-
* @var int
34-
*/
3532
private $a;
36-
37-
/**
38-
* @var int
39-
*/
4033
private $b;
41-
42-
/**
43-
* @var int
44-
*/
4534
private $c;
4635

4736
/**
@@ -57,8 +46,6 @@ public function __construct($a, $b, $c)
5746
}
5847

5948
/**
60-
* @param Specificity $specificity
61-
*
6249
* @return self
6350
*/
6451
public function plus(Specificity $specificity)
@@ -80,8 +67,6 @@ public function getValue()
8067
* Returns -1 if the object specificity is lower than the argument,
8168
* 0 if they are equal, and 1 if the argument is lower.
8269
*
83-
* @param Specificity $specificity
84-
*
8570
* @return int
8671
*/
8772
public function compareTo(Specificity $specificity)

Parser/Handler/HandlerInterface.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@
2727
interface HandlerInterface
2828
{
2929
/**
30-
* @param Reader $reader
31-
* @param TokenStream $stream
32-
*
3330
* @return bool
3431
*/
3532
public function handle(Reader $reader, TokenStream $stream);

0 commit comments

Comments
 (0)