Skip to content

Commit 423fd14

Browse files
committed
[ticket/17281] Remove not needed suppress
PHPBB3-17281
1 parent 321535c commit 423fd14

5 files changed

+0
-10
lines changed

event/recursive_event_filter_iterator.php

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* This filter ignores directories and files starting with a dot.
1818
* It also skips some directories that do not contain events anyway,
1919
* such as e.g. files/, store/ and vendor/
20-
*
21-
* @psalm-suppress MissingTemplateParam
2220
*/
2321
class recursive_event_filter_iterator extends \RecursiveFilterIterator
2422
{

extension/provider.php

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
*
2424
* Items could be anything, for example template paths or cron task names.
2525
* Derived classes completely define what the items are.
26-
*
27-
* @psalm-suppress MissingTemplateParam
2826
*/
2927
abstract class provider implements \IteratorAggregate
3028
{

finder/recursive_dot_prefix_filter_iterator.php

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* This filter ignores directories starting with a dot.
2020
* When searching for php classes and template files of extensions
2121
* we don't need to look inside these directories.
22-
*
23-
* @psalm-suppress MissingTemplateParam
2422
*/
2523
class recursive_dot_prefix_filter_iterator extends \RecursiveFilterIterator
2624
{

finder/recursive_path_iterator.php

-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515

1616
namespace phpbb\finder;
1717

18-
/**
19-
* @psalm-suppress MissingTemplateParam
20-
*/
2118
class recursive_path_iterator extends \RecursiveIteratorIterator
2219
{
2320
/**

request/deactivated_super_global.php

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
/**
1717
* Replacement for a superglobal (like $_GET or $_POST) which calls
1818
* trigger_error on all operations but isset, overloads the [] operator with SPL.
19-
* @psalm-suppress MissingTemplateParam
2019
*/
2120
class deactivated_super_global implements \ArrayAccess, \Countable, \IteratorAggregate
2221
{

0 commit comments

Comments
 (0)