Skip to content

Commit cf66cb5

Browse files
committed
minor #24342 removed useless PHPDoc (OskarStark)
This PR was squashed before being merged into the 2.7 branch (closes #24342). Discussion ---------- removed useless PHPDoc | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no <!-- don't forget updating src/**/CHANGELOG.md files --> | BC breaks? | no | Deprecations? | no <!-- don't forget updating UPGRADE-*.md files --> | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | n/a Commits ------- 5ee9043d8b removed useless PHPDoc
2 parents 668d0bb + 801a1f5 commit cf66cb5

File tree

6 files changed

+0
-14
lines changed

6 files changed

+0
-14
lines changed

Node/Specificity.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ class Specificity
4343
private $c;
4444

4545
/**
46-
* Constructor.
47-
*
4846
* @param int $a
4947
* @param int $b
5048
* @param int $c

Parser/Parser.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ class Parser implements ParserInterface
3131
private $tokenizer;
3232

3333
/**
34-
* Constructor.
35-
*
3634
* @param null|Tokenizer $tokenizer
3735
*/
3836
public function __construct(Tokenizer $tokenizer = null)

Parser/Tokenizer/Tokenizer.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ class Tokenizer
3131
*/
3232
private $handlers;
3333

34-
/**
35-
* Constructor.
36-
*/
3734
public function __construct()
3835
{
3936
$patterns = new TokenizerPatterns();

Parser/Tokenizer/TokenizerPatterns.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,6 @@ class TokenizerPatterns
8181
*/
8282
private $quotedStringPattern;
8383

84-
/**
85-
* Constructor.
86-
*/
8784
public function __construct()
8885
{
8986
$this->unicodeEscapePattern = '\\\\([0-9a-f]{1,6})(?:\r\n|[ \n\r\t\f])?';

XPath/Extension/HtmlExtension.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727
class HtmlExtension extends AbstractExtension
2828
{
2929
/**
30-
* Constructor.
31-
*
3230
* @param Translator $translator
3331
*/
3432
public function __construct(Translator $translator)

XPath/Extension/NodeExtension.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ class NodeExtension extends AbstractExtension
3535
private $flags;
3636

3737
/**
38-
* Constructor.
39-
*
4038
* @param int $flags
4139
*/
4240
public function __construct($flags = 0)

0 commit comments

Comments
 (0)