Skip to content

Commit 3fa1a7e

Browse files
committed
Remove suppression of PHPMD warnings for factories
1 parent 4c0a2d3 commit 3fa1a7e

File tree

10 files changed

+0
-10
lines changed

10 files changed

+0
-10
lines changed

src/Locator.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ protected function __construct()
3030
* Creates object instance.
3131
*
3232
* @return static
33-
* @SuppressWarnings(PHPMD.StaticAccess)
3433
*/
3534
public static function factory()
3635
{

src/Locator/Reference.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ protected function __construct()
8484
* Creates object instance.
8585
*
8686
* @return static
87-
* @SuppressWarnings(PHPMD.StaticAccess)
8887
*/
8988
public static function factory()
9089
{

src/Parser.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ protected function __construct()
6060
* Creates object instance.
6161
*
6262
* @return static
63-
* @SuppressWarnings(PHPMD.StaticAccess)
6463
*/
6564
public static function factory()
6665
{

src/Parser/Lexer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ protected function __construct()
3333
* Creates instance of object.
3434
*
3535
* @return static
36-
* @SuppressWarnings(PHPMD.StaticAccess)
3736
*/
3837
public static function factory()
3938
{

src/Parser/Lexer/Scanner.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ protected function __construct()
4848
* Creates object instance.
4949
*
5050
* @return static
51-
* @SuppressWarnings(PHPMD.StaticAccess)
5251
*/
5352
public static function factory()
5453
{

src/Parser/Lexer/TokenBuffer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ protected function __construct()
3939
* Creates instance of object.
4040
*
4141
* @return static
42-
* @SuppressWarnings(PHPMD.StaticAccess)
4342
*/
4443
public static function factory()
4544
{

src/Parser/ReferenceBuffer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ protected function __construct()
2626

2727
/**
2828
* @return static
29-
* @SuppressWarnings(PHPMD.StaticAccess)
3029
*/
3130
public static function factory()
3231
{

src/Parser/Token.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ protected function __construct()
8080
* @param int|null $length
8181
* @param string|null $value
8282
* @return static
83-
* @SuppressWarnings(PHPMD.StaticAccess)
8483
*/
8584
public static function factory($type = null, $text = null, $length = null, $value = null)
8685
{

src/Pointer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ protected function __construct()
7575
* Creates object instance.
7676
*
7777
* @return static
78-
* @SuppressWarnings(PHPMD.StaticAccess)
7978
*/
8079
public static function factory()
8180
{

src/Pointer/Evaluate.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ protected function __construct()
7070
* Creates object instance.
7171
*
7272
* @return static
73-
* @SuppressWarnings(PHPMD.StaticAccess)
7473
*/
7574
public static function factory()
7675
{

0 commit comments

Comments
 (0)