Skip to content

Commit 220f8a4

Browse files
Merge branch '3.4'
* 3.4: [DI] minor docblock fixes
2 parents 61cd2d1 + 6bbad1a commit 220f8a4

24 files changed

+1
-262
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 & 13 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
public function __construct(int $a, int $b, int $c)
@@ -65,8 +54,6 @@ public function getValue(): int
6554
* Returns -1 if the object specificity is lower than the argument,
6655
* 0 if they are equal, and 1 if the argument is lower.
6756
*
68-
* @param Specificity $specificity
69-
*
7057
* @return int
7158
*/
7259
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): bool;

0 commit comments

Comments
 (0)