Skip to content

Commit 021fd05

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent 0dd5e36 commit 021fd05

28 files changed

+0
-120
lines changed

Node/AttributeNode.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ public function getValue(): ?string
6363
return $this->value;
6464
}
6565

66-
/**
67-
* {@inheritdoc}
68-
*/
6966
public function getSpecificity(): Specificity
7067
{
7168
return $this->selector->getSpecificity()->plus(new Specificity(0, 1, 0));

Node/ClassNode.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ public function getName(): string
4242
return $this->name;
4343
}
4444

45-
/**
46-
* {@inheritdoc}
47-
*/
4845
public function getSpecificity(): Specificity
4946
{
5047
return $this->selector->getSpecificity()->plus(new Specificity(0, 1, 0));

Node/CombinedSelectorNode.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ public function getSubSelector(): NodeInterface
4949
return $this->subSelector;
5050
}
5151

52-
/**
53-
* {@inheritdoc}
54-
*/
5552
public function getSpecificity(): Specificity
5653
{
5754
return $this->selector->getSpecificity()->plus($this->subSelector->getSpecificity());

Node/ElementNode.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ public function getElement(): ?string
4242
return $this->element;
4343
}
4444

45-
/**
46-
* {@inheritdoc}
47-
*/
4845
public function getSpecificity(): Specificity
4946
{
5047
return new Specificity(0, 0, $this->element ? 1 : 0);

Node/FunctionNode.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@ public function getArguments(): array
5757
return $this->arguments;
5858
}
5959

60-
/**
61-
* {@inheritdoc}
62-
*/
6360
public function getSpecificity(): Specificity
6461
{
6562
return $this->selector->getSpecificity()->plus(new Specificity(0, 1, 0));

Node/HashNode.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ public function getId(): string
4242
return $this->id;
4343
}
4444

45-
/**
46-
* {@inheritdoc}
47-
*/
4845
public function getSpecificity(): Specificity
4946
{
5047
return $this->selector->getSpecificity()->plus(new Specificity(1, 0, 0));

Node/NegationNode.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ public function getSubSelector(): NodeInterface
4242
return $this->subSelector;
4343
}
4444

45-
/**
46-
* {@inheritdoc}
47-
*/
4845
public function getSpecificity(): Specificity
4946
{
5047
return $this->selector->getSpecificity()->plus($this->subSelector->getSpecificity());

Node/PseudoNode.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ public function getIdentifier(): string
4242
return $this->identifier;
4343
}
4444

45-
/**
46-
* {@inheritdoc}
47-
*/
4845
public function getSpecificity(): Specificity
4946
{
5047
return $this->selector->getSpecificity()->plus(new Specificity(0, 1, 0));

Node/SelectorNode.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ public function getPseudoElement(): ?string
4242
return $this->pseudoElement;
4343
}
4444

45-
/**
46-
* {@inheritdoc}
47-
*/
4845
public function getSpecificity(): Specificity
4946
{
5047
return $this->tree->getSpecificity()->plus(new Specificity(0, 0, $this->pseudoElement ? 1 : 0));

Parser/Handler/CommentHandler.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
*/
2727
class CommentHandler implements HandlerInterface
2828
{
29-
/**
30-
* {@inheritdoc}
31-
*/
3229
public function handle(Reader $reader, TokenStream $stream): bool
3330
{
3431
if ('/*' !== $reader->getSubstring(2)) {

0 commit comments

Comments
 (0)