We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2036590 + c38e7e4 commit ff7a908Copy full SHA for ff7a908
src/Sniffs/AbstractPatternSniff.php
@@ -57,16 +57,9 @@ abstract class AbstractPatternSniff implements Sniff
57
58
/**
59
* Constructs a AbstractPatternSniff.
60
- *
61
- * @param boolean $ignoreComments If true, comments will be ignored.
62
*/
63
- public function __construct($ignoreComments=null)
+ public function __construct()
64
{
65
- // This is here for backwards compatibility.
66
- if ($ignoreComments !== null) {
67
- $this->ignoreComments = $ignoreComments;
68
- }
69
-
70
$this->supplementaryTokens = $this->registerSupplementary();
71
72
}//end __construct()
0 commit comments